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

39 lines
No EOL
804 B
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Firestore datasource",
"description": "A schema defining firestore datasource",
"type": "database",
"source": {
"name": "Firestore",
"kind": "firestore",
"exposedVariables": {
"isLoading": false,
"data": [],
"rawData": []
},
"options": {
"gcp_key": {
"type": "string",
"encrypted": true
}
}
},
"defaults": {
"gcp_key": {
"value": ""
}
},
"properties": {
"gcp_key": {
"label": "Private key",
"key": "gcp_key",
"rows": 15,
"encrypted": true,
"type": "textarea",
"description": "Enter private key"
}
},
"required": [
"gcp_key"
]
}