26 lines
463 B
JSON
26 lines
463 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2019-09/schema",
|
|
"$id": "http://example.com/example.json",
|
|
"type": "object",
|
|
"default": {},
|
|
"required": [
|
|
"event",
|
|
"telegramChatId"
|
|
],
|
|
"additionalProperties": true,
|
|
"properties": {
|
|
"event": {
|
|
"type": "string",
|
|
"default": ""
|
|
},
|
|
"messageId": {
|
|
"type": "number",
|
|
"default": 0
|
|
},
|
|
"telegramChatId": {
|
|
"type": "number",
|
|
"default": 0
|
|
}
|
|
}
|
|
}
|