mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-25 15:37:37 +00:00
* feat: add dynamic form (airtable) * feat: add schema for rest api * feat: add schema for graphql * feat: add schema for stripe * feat: add schema for google sheets * feat: add schema for slack * fix: options from correct key * fix: schema url * rename headers to http-headers * fix placeholder * feat: add schema for dynamodb * feat: add schema for redis, elastic search, firestore * feat: add shema for mongodb, postgresql * feat: add mysql schema * fix: remove azure option * feat: add dropdown component flip type * feat: add mssql schema * chore: delete previous components * remove console log * fix: database value set as port * feat: add helptext prop to input * remove unwanted class on toggle * change placeholders * change placeholder * fix typo * add ssl_enabled to schema
17 lines
553 B
JSON
17 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"]
|
|
}
|