{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UcContact", "title": "UcContact", "description": "A contact represents a person that optionally is associated with a call", "properties": { "company": { "type": "string" }, "created_at": { "format": "date-time", "type": "string" }, "emails": { "$ref": "#/components/schemas/property_UcContact_emails" }, "first_name": { "type": "string" }, "id": { "type": "string" }, "last_name": { "type": "string" }, "name": { "type": "string" }, "raw": { "additionalProperties": true, "type": "object" }, "telephones": { "$ref": "#/components/schemas/property_UcContact_telephones" }, "title": { "type": "string" }, "updated_at": { "format": "date-time", "type": "string" } }, "type": "object" }