ToolJet/plugins/packages/bigquery/lib/manifest.json
Parth f82bfddb8c
Enhance: Plugin schema for validation and design component (#12655)
* API backend setup for fetching decrypted options object

* Frontend setup to use and fetch decrypted options object

* Debounce validation and include encrypted fields

* Update banners and point back to inputs

* Remove ssl config from connection string in postgresql

* Add support for textarea design component

* Improve conditional requirement logic

* Fix validation banner bugs

* Change schema for airtable

* Change schema for bigquery

* Change schema for mongodb
2025-04-28 12:01:41 +05:30

35 lines
No EOL
881 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Bigquery datasource",
"description": "A schema defining BigQuery datasource",
"type": "object",
"tj:version": "1.0.0",
"tj:source": {
"name": "BigQuery",
"kind": "bigquery",
"type": "database"
},
"properties": {
"private_key": {
"type": "string",
"title": "Private key",
"description": "Enter JSON private key for service account"
}
},
"tj:encrypted": [
"private_key"
],
"required": [
"private_key"
],
"tj:ui:properties": {
"private_key": {
"$ref": "#/properties/private_key",
"key": "private_key",
"label": "Private key",
"description": "Enter JSON private key for service account",
"widget": "password-v3-textarea",
"required": true
}
}
}