mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
* 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
35 lines
No EOL
881 B
JSON
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
|
|
}
|
|
}
|
|
} |