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