{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TransferFailed", "type": "object", "required": ["event", "call_id", "created_at"], "properties": { "event": { "const": "TransferFailed" }, "call_id": { "type": "string" }, "escalation_id": { "type": ["string", "null"] }, "agent_id": { "type": ["string", "null"] }, "reason": { "type": ["string", "null"] }, "error": { "type": ["string", "null"] }, "created_at": { "type": "string", "format": "date-time" } } }