ToolJet/plugins/packages/twilioapi/lib/operations.json
Gandharv 27c91a008a
Add json schema for vscode autocomplete (#1962)
* add json schema

* update schema

* update link
2022-01-27 10:55:16 +05:30

37 lines
No EOL
934 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
"title": "Twilio datasource",
"description": "A schema defining Twilio datasource",
"type": "api",
"defaults": {},
"properties": {
"operation": {
"label": "Operation",
"key": "operation",
"type": "dropdown-component-flip",
"description": "Single select dropdown for operation",
"list": [
{
"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"
}
}
}
}