{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "CrmContact Structure", "description": "JSON Structure for CrmContact from Unified.to API", "structure": { "type": "object", "description": "A contact represents a person that optionally is associated with a deal and/or a company", "properties": { "id": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "name": { "type": "string" }, "first_name": { "type": "string" }, "last_name": { "type": "string" }, "title": { "type": "string" }, "company": { "type": "string" }, "emails": { "$ref": "property_CrmContact_emails" }, "telephones": { "$ref": "property_CrmContact_telephones" }, "deal_ids": { "$ref": "property_CrmContact_deal_ids" }, "company_ids": { "$ref": "property_CrmContact_company_ids" }, "address": { "$ref": "property_CrmContact_address" }, "user_id": { "type": "string" }, "link_urls": { "$ref": "property_CrmContact_link_urls" }, "metadata": { "$ref": "property_CrmContact_metadata" }, "department": { "type": "string" }, "image_url": { "type": "string" }, "raw": { "type": "object" } } } }