mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 00:17:18 +00:00
* feat: add datasource type into individual schema * add active class when dark mode * fix: change type key to source
29 lines
710 B
JSON
29 lines
710 B
JSON
{
|
|
"$schema": "https://json-schema.org/",
|
|
"$id": "https://tooljet.io/GoogleSheets.schema.json",
|
|
"title": "Google Sheets datasource",
|
|
"description": "A schema defining google sheets datasource",
|
|
"type": "object",
|
|
"source": {
|
|
"name": "Google Sheets",
|
|
"kind": "googlesheets",
|
|
"exposedVariables": {
|
|
"isLoading": {},
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"api_key": { "type": "string", "encrypted": true }
|
|
},
|
|
"customTesting": true,
|
|
"hideSave": true
|
|
},
|
|
"properties": {
|
|
"sheets": {
|
|
"$label": "",
|
|
"$key": "sheets",
|
|
"type": "react-component-google-sheets",
|
|
"description": "A component for google sheets"
|
|
}
|
|
}
|
|
}
|