Co-authored-by: Eugene Kulak <kulak.eugene@gmail.com> Co-authored-by: Eugene K <34233075+eugene-kulak@users.noreply.github.com>
50 lines
921 B
JSON
50 lines
921 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"type": "integer"
|
|
},
|
|
"participants": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"status": {
|
|
"type": "string",
|
|
"enum": ["open", "closed", "pending", "bulk_sent"]
|
|
},
|
|
"contactId": {
|
|
"type": "integer"
|
|
},
|
|
"inboxId": {
|
|
"type": "integer"
|
|
},
|
|
"createdAt": {
|
|
"type": "integer"
|
|
},
|
|
"updatedAt": {
|
|
"type": "integer"
|
|
},
|
|
"relatedPlaybookId": {
|
|
"type": ["null", "string"]
|
|
},
|
|
"conversationTags": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"properties": {
|
|
"color": {
|
|
"type": "string",
|
|
"description": "HEX value"
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|