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