ToolJet/frontend/src/Editor/QueryManager/QueryEditors/Twilio.schema.json

38 lines
937 B
JSON
Raw Normal View History

{
"$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"
}
}
}
}