mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 15:37:37 +00:00
18 lines
553 B
JSON
18 lines
553 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",
|
||
|
|
"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"]
|
||
|
|
}
|