{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UcCall", "title": "UcCall", "properties": { "contact_id": { "type": "string" }, "contacts": { "$ref": "#/components/schemas/property_UcCall_contacts" }, "created_at": { "format": "date-time", "type": "string" }, "end_at": { "format": "date-time", "type": "string" }, "id": { "type": "string" }, "is_private": { "type": "boolean" }, "raw": { "additionalProperties": true, "type": "object" }, "start_at": { "format": "date-time", "type": "string" }, "telephone": { "$ref": "#/components/schemas/property_UcCall_telephone" }, "type": { "enum": [ "INBOUND", "OUTBOUND" ], "type": "string", "x-speakeasy-unknown-values": "allow" }, "updated_at": { "format": "date-time", "type": "string" }, "user_id": { "type": "string" }, "user_name": { "type": "string" }, "user_phone": { "type": "string" } }, "type": "object" }