{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/FlowActionWhatsappSendMessageParams", "title": "FlowActionWhatsappSendMessageParams", "type": "object", "additionalProperties": false, "required": [ "connection_id", "sender_id", "recipient_number", "type", "payload" ], "properties": { "connection_id": { "type": "string", "maxLength": 30, "format": "flows-vault-connections-id" }, "sender_id": { "type": "string" }, "recipient_number": { "type": "string" }, "type": { "type": "string", "enum": [ "AUDIO", "CONTACTS", "DOCUMENT", "IMAGE", "INTERACTIVE", "LOCATION", "STICKER", "TEMPLATE", "TEXT" ] }, "payload": { "$ref": "#/components/schemas/FlowActionWhatsappSendMessageParamsPayload" } } }