mezzotre/schema/json/CallbackQueryMetadata.json

26 lines
463 B
JSON
Raw Permalink Normal View History

{
"$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
}
}
}