{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/vessel/refs/heads/main/json-schema/vessel-contact-schema.json", "title": "Vessel CRM Contact", "description": "A normalized CRM contact record from the Vessel unified CRM API (Salesforce, HubSpot, Zoho, Pipedrive, etc.)", "type": "object", "properties": { "id": { "type": "string", "description": "Unique contact ID (normalized to string across all CRM systems)" }, "firstName": { "type": "string", "description": "Contact first name" }, "lastName": { "type": "string", "description": "Contact last name" }, "email": { "type": "string", "format": "email", "description": "Contact email address" }, "phone": { "type": "string", "description": "Contact phone number" }, "title": { "type": "string", "description": "Contact job title" }, "company": { "type": "string", "description": "Contact company name" }, "createdAt": { "type": "string", "format": "date-time", "description": "ISO 8601 creation timestamp (normalized across all CRM systems)" }, "updatedAt": { "type": "string", "format": "date-time", "description": "ISO 8601 last update timestamp" } }, "required": ["id"] }