ToolJet/plugins/packages/bigquery/lib/manifest.json
2022-02-08 08:44:38 +05:30

37 lines
No EOL
801 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": false,
"data": {},
"rawData": {}
},
"options": {
"private_key": {
"encrypted": true
}
}
},
"defaults": {
"private_key": {
"value": ""
}
},
"properties": {
"private_key": {
"label": "Private key",
"key": "private_key",
"type": "textarea",
"encrypted": true,
"description": "Enter JSON private key for service account"
}
},
"required": [
"private_key"
]
}