Files

15 lines
495 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CallConnected",
"type": "object",
"required": ["event", "call_id", "created_at"],
"properties": {
"event": { "const": "call.connected" },
"call_id": { "type": "string" },
"interaction_id": { "type": ["string", "null"] },
"operator_extension": { "type": ["string", "null"] },
"claimed_by_user": { "type": ["string", "null"] },
"created_at": { "type": "string", "format": "date-time" }
}
}