ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Api/Airtable.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

30 lines
821 B
JSON

{
"$schema": "https://json-schema.org/",
"$id": "https://tooljet.io/Airtable.schema.json",
"title": "Airtable datasource",
"description": "A schema defining airtable datasource",
"type": "object",
"source": {
"name": "Airtable",
"kind": "airtable",
"exposedVariables": {
"isLoading": {},
"data": {},
"rawData": {}
},
"options": {
"api_key": { "type": "string", "encrypted": true }
},
"customTesting": true
},
"properties": {
"api_key": {
"$label": "API key",
"$key": "api_key",
"type": "password",
"description": "Api key for airtable",
"helpText": "For generating API key, visit: <a href='https://airtable.com/account' target='_blank' rel='noreferrer'>Airtable account page</a>"
}
},
"required": ["api_key"]
}