mirror of
https://github.com/AsamK/signal-cli.git
synced 2026-04-28 10:00:15 +00:00
41 lines
909 B
JSON
41 lines
909 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://example.com/schemas/sync-message.schema.json",
|
|
"title": "SyncMessage",
|
|
"type": "object",
|
|
"properties": {
|
|
"blockedGroupIds": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"blockedNumbers": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"readMessages": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "https://example.com/schemas/sync-read-message.schema.json"
|
|
}
|
|
},
|
|
"sentMessage": {
|
|
"$ref": "https://example.com/schemas/sync-data-message.schema.json"
|
|
},
|
|
"sentStoryMessage": {
|
|
"$ref": "https://example.com/schemas/sync-story-message.schema.json"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"CONTACTS_SYNC",
|
|
"GROUPS_SYNC",
|
|
"REQUEST_SYNC"
|
|
]
|
|
}
|
|
}
|
|
}
|