ToolJet/frontend/src/Editor/DataSourceManager/SourceComponents/Api/Airtable.schema.json

34 lines
873 B
JSON
Raw Normal View History

{
"$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
},
"defaults": {
"api_key": { "value": "" }
},
"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"]
}