mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 15:07:23 +00:00
38 lines
937 B
JSON
38 lines
937 B
JSON
|
|
{
|
||
|
|
"$schema": "https://json-schema.org/",
|
||
|
|
"$id": "https://tooljet.io/dataqueries/Twilio.schema.json",
|
||
|
|
"title": "Twilio datasource",
|
||
|
|
"description": "A schema defining Twilio datasource",
|
||
|
|
"type": "object",
|
||
|
|
"defaults": {},
|
||
|
|
"properties": {
|
||
|
|
"operation": {
|
||
|
|
"$label": "Operation",
|
||
|
|
"$key": "operation",
|
||
|
|
"type": "dropdown-component-flip",
|
||
|
|
"description": "Single select dropdown for operation",
|
||
|
|
"$options": [
|
||
|
|
{
|
||
|
|
"value": "send_sms",
|
||
|
|
"name": "Send SMS"
|
||
|
|
}
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"send_sms": {
|
||
|
|
"toNumber": {
|
||
|
|
"$label": "To Number",
|
||
|
|
"$key": "toNumber",
|
||
|
|
"type": "codehinter",
|
||
|
|
"lineNumbers": false,
|
||
|
|
"description": "Enter to number"
|
||
|
|
},
|
||
|
|
"body": {
|
||
|
|
"$label": "Body",
|
||
|
|
"$key": "body",
|
||
|
|
"type": "codehinter",
|
||
|
|
"lineNumbers": false,
|
||
|
|
"description": "Enter message body"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|