ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Api/Slack.schema.json
Gandharv f09542180f
add datasource type into individual schema (#762)
* feat: add datasource type into individual schema

* add active class when dark mode

* fix: change type key to source
2021-09-22 10:43:12 +05:30

29 lines
655 B
JSON

{
"$schema": "https://json-schema.org/",
"$id": "https://tooljet.io/Slack.schema.json",
"title": "Slack datasource",
"description": "A schema defining slack datasource",
"type": "object",
"source": {
"name": "Slack",
"kind": "slack",
"exposedVariables": {
"isLoading": {},
"data": {},
"rawData": {}
},
"options": {
"api_key": { "type": "string", "encrypted": true }
},
"customTesting": true,
"hideSave": true
},
"properties": {
"sheets": {
"$label": "",
"$key": "slack",
"type": "react-component-slack",
"description": "A component for slack"
}
}
}