{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionTelegramSendMessageParams", "title": "FlowActionTelegramSendMessageParams", "type": "object", "additionalProperties": false, "required": [ "connection_id", "chat_id", "text" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "chat_id": { "type": "string" }, "text": { "type": "string" } } }