mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 16:37:42 +00:00
39 lines
No EOL
945 B
JSON
39 lines
No EOL
945 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/operations.schema.json",
|
|
"title": "Slack datasource",
|
|
"description": "A schema defining Slack datasource",
|
|
"type": "api",
|
|
"defaults": {},
|
|
"properties": {
|
|
"mode": {
|
|
"label": "",
|
|
"key": "mode",
|
|
"type": "dropdown-component-flip",
|
|
"description": "Single select dropdown for mode",
|
|
"list": [
|
|
{
|
|
"name": "List members",
|
|
"value": "list_users"
|
|
},
|
|
{
|
|
"name": "Send message",
|
|
"value": "send_message"
|
|
}
|
|
]
|
|
},
|
|
"send_message": {
|
|
"channel": {
|
|
"label": "Channel",
|
|
"key": "channel",
|
|
"type": "codehinter",
|
|
"description": "Enter channel"
|
|
},
|
|
"message": {
|
|
"label": "Message",
|
|
"key": "message",
|
|
"type": "codehinter",
|
|
"description": "Enter message"
|
|
}
|
|
}
|
|
}
|
|
} |