ToolJet/plugins/packages/baserow/lib/manifest.json
Kavin Venkatachalam 7711a34b93
Baserow integration (#2773)
* Baserow integration

* Added JSON5 & updated code
2022-04-11 16:49:49 +05:30

38 lines
No EOL
762 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Baserow datasource",
"description": "A schema defining Baserow datasource",
"type": "api",
"source": {
"name": "Baserow",
"kind": "baserow",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"api_token": {
"encrypted": true
}
},
"customTesting": true
},
"defaults": {
"api_token": {
"value": ""
}
},
"properties": {
"api_token": {
"label": "API token",
"key": "api_token",
"type": "password",
"description": "API token for baserow"
}
},
"required": [
"api_token"
]
}