13 lines
432 B
JSON
13 lines
432 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"title": "InteractionClosed",
|
|
"type": "object",
|
|
"required": ["event", "interaction_id", "resolved_first_contact", "created_at"],
|
|
"properties": {
|
|
"event": { "const": "interaction.closed" },
|
|
"interaction_id": { "type": "string" },
|
|
"resolved_first_contact": { "type": "boolean" },
|
|
"created_at": { "type": "string", "format": "date-time" }
|
|
}
|
|
}
|