{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Pipedrive person", "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "Person name." }, "first_name": { "type": "string", "description": "First name." }, "last_name": { "type": "string", "description": "Last name." }, "email": { "type": "array", "description": "Email entries accepted by Pipedrive.", "items": { "type": "object", "description": "Email entry.", "additionalProperties": true } }, "phone": { "type": "array", "description": "Phone entries accepted by Pipedrive.", "items": { "type": "object", "description": "Phone entry.", "additionalProperties": true } }, "owner_id": { "type": "integer", "description": "Owner user id." }, "org_id": { "type": "integer", "description": "Linked organization id." }, "visible_to": { "type": "string", "description": "Visibility setting." }, "id": { "type": "string", "description": "Provider canonical record id.", "readOnly": true }, "createdAt": { "type": "string", "format": "date-time", "description": "Provider creation timestamp.", "readOnly": true }, "updatedAt": { "type": "string", "format": "date-time", "description": "Provider last update timestamp.", "readOnly": true }, "url": { "type": "string", "format": "uri", "description": "Provider URL for the record.", "readOnly": true }, "identifier": { "type": "string", "description": "Provider human-readable identifier or key.", "readOnly": true }, "provider": { "type": "string", "description": "Relayfile provider name.", "readOnly": true }, "objectType": { "type": "string", "description": "Relayfile object type.", "readOnly": true }, "objectId": { "type": "string", "description": "Relayfile object id.", "readOnly": true }, "workspaceId": { "type": "string", "description": "Relayfile workspace id.", "readOnly": true }, "connectionId": { "type": "string", "description": "Relayfile connection id.", "readOnly": true }, "_webhook": { "type": "object", "description": "Provider webhook metadata captured during sync.", "readOnly": true, "additionalProperties": true }, "_connection": { "type": "object", "description": "Relayfile connection metadata captured during sync.", "readOnly": true, "additionalProperties": true } }, "additionalProperties": false, "description": "Full resource record schema. Fields marked readOnly are synced from the provider and cannot be written by agents." }