mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
feat: Add new schema files (no-changelog) (#13062)
This commit is contained in:
85
packages/nodes-base/nodes/Telegram/__schema__/v1.2.0/message/sendLocation.json
vendored
Normal file
85
packages/nodes-base/nodes/Telegram/__schema__/v1.2.0/message/sendLocation.json
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
{
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ok": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"result": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"message_id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"from": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"is_bot": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
},
|
||||
"username": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"is_bot",
|
||||
"first_name",
|
||||
"username"
|
||||
]
|
||||
},
|
||||
"chat": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"id": {
|
||||
"type": "integer"
|
||||
},
|
||||
"type": {
|
||||
"type": "string"
|
||||
},
|
||||
"first_name": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"id",
|
||||
"type"
|
||||
]
|
||||
},
|
||||
"date": {
|
||||
"type": "integer"
|
||||
},
|
||||
"location": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"latitude": {
|
||||
"type": "number"
|
||||
},
|
||||
"longitude": {
|
||||
"type": "number"
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"latitude",
|
||||
"longitude"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"message_id",
|
||||
"chat",
|
||||
"date",
|
||||
"location"
|
||||
]
|
||||
}
|
||||
},
|
||||
"required": [
|
||||
"ok",
|
||||
"result"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user