mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-23 22:47:28 +00:00
* fixed capitalization issue Signed-off-by: thesynthax <kushagra1403@gmail.com> * updated changes Signed-off-by: thesynthax <kushagra1403@gmail.com> * fix: standardize label casing and formatting in plugin manifests * fix: standardize label casing in plugin manifests --------- Signed-off-by: thesynthax <kushagra1403@gmail.com> Co-authored-by: thesynthax <kushagra1403@gmail.com>
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
|
|
{
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
|
"title": "Databricks datasource",
|
|
"description": "A schema defining Databricks datasource",
|
|
"type": "database",
|
|
"source": {
|
|
"name": "Databricks",
|
|
"kind": "databricks",
|
|
"exposedVariables": {
|
|
"isLoading": false,
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {}
|
|
},
|
|
"defaults": {},
|
|
"properties": {
|
|
"host": {
|
|
"label": "Host",
|
|
"key": "host",
|
|
"type": "text",
|
|
"description": "host.cloud.databricks.com"
|
|
},
|
|
"port": {
|
|
"label": "Port",
|
|
"key": "port",
|
|
"type": "text",
|
|
"description": "443"
|
|
},
|
|
"http_path": {
|
|
"label": "HTTP path",
|
|
"key": "http_path",
|
|
"type": "text",
|
|
"description": "/sql/2.0/warehouse/id"
|
|
},
|
|
"default_catalog": {
|
|
"label": "Default catalog",
|
|
"key": "default_catalog",
|
|
"type": "text",
|
|
"description": "tooljet_metastore"
|
|
},
|
|
"default_schema": {
|
|
"label": "Default schema",
|
|
"key": "default_schema",
|
|
"type": "text",
|
|
"description": "default"
|
|
},
|
|
"personal_access_token": {
|
|
"label": "Personal access token",
|
|
"key": "personal_access_token",
|
|
"type": "password",
|
|
"description": "default"
|
|
}
|
|
},
|
|
"required": ["host", "http_path", "personal_access_token"]
|
|
}
|