ToolJet/plugins/packages/databricks/lib/manifest.json
Priyansh Rai beb8bcfc65
Fix: Capitalisation inconsistencies in labels (#14174)
* 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>
2025-10-22 13:59:18 +05:30

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"]
}