{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TicketingTicket Structure", "description": "JSON Structure for TicketingTicket from Unified.to API", "structure": { "type": "object", "properties": { "id": { "type": "string" }, "created_at": { "type": "string" }, "updated_at": { "type": "string" }, "customer_id": { "type": "string" }, "subject": { "type": "string" }, "description": { "type": "string" }, "status": { "type": "string", "enum": [ "ACTIVE", "CLOSED" ] }, "closed_at": { "type": "string" }, "priority": { "type": "string" }, "category_id": { "type": "string" }, "category": { "type": "string" }, "source": { "type": "string" }, "source_ref": { "type": "string" }, "tags": { "$ref": "property_TicketingTicket_tags" }, "user_id": { "type": "string" }, "url": { "type": "string" }, "raw": { "type": "object" } } } }