{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-ticketing-customer-schema.json", "title": "TicketingCustomer", "description": "TicketingCustomer schema from Unified.to API", "type": "object", "properties": { "id": { "type": "string" }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "name": { "type": "string" }, "emails": { "$ref": "#/components/schemas/property_TicketingCustomer_emails" }, "telephones": { "$ref": "#/components/schemas/property_TicketingCustomer_telephones" }, "tags": { "$ref": "#/components/schemas/property_TicketingCustomer_tags" }, "raw": { "type": "object", "additionalProperties": true } } }