You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 lines
719 B

telegram_callback = {
"type": "object",
"properties": {
"message": {
"type": "object",
"properties": {
"chat": {
"type": "object",
"properties": {
"id": {"type": "number"},
"type": {"enum": ["group", "private", "supergroup"]},
"title": {"type": "string"},
"username": {"type": "string"},
},
"required": ["id", "type"],
},
"text": {"type": "string"},
},
"required": ["chat", "text"],
}
},
"required": ["message"],
}