mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-27 08:27:23 +00:00
* initial commit * feature-2152 bigquery integration * Typo fix * moved bigquery to databse type
36 lines
No EOL
773 B
JSON
36 lines
No EOL
773 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": "database",
|
|
"source": {
|
|
"name": "BigQuery",
|
|
"kind": "bigquery",
|
|
"exposedVariables": {
|
|
"isLoading": {},
|
|
"data": {},
|
|
"rawData": {}
|
|
},
|
|
"options": {
|
|
"private_key": {
|
|
"encrypted": true
|
|
}
|
|
}
|
|
},
|
|
"defaults": {
|
|
"private_key": {
|
|
"value": ""
|
|
}
|
|
},
|
|
"properties": {
|
|
"private_key": {
|
|
"label": "Private key",
|
|
"key": "private_key",
|
|
"type": "textarea",
|
|
"description": "Enter JSON private key for service account"
|
|
}
|
|
},
|
|
"required": [
|
|
"private_key"
|
|
]
|
|
} |