mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-24 06:57:40 +00:00
48 lines
992 B
JSON
48 lines
992 B
JSON
|
|
|
||
|
|
{
|
||
|
|
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
|
||
|
|
"title": "CosmosDB datasource",
|
||
|
|
"description": "A schema defining CosmosDB datasource",
|
||
|
|
"type": "database",
|
||
|
|
"source": {
|
||
|
|
"name": "CosmosDB",
|
||
|
|
"kind": "cosmosdb",
|
||
|
|
"exposedVariables": {
|
||
|
|
"isLoading": false,
|
||
|
|
"data": {},
|
||
|
|
"rawData": {}
|
||
|
|
},
|
||
|
|
"options": {
|
||
|
|
"endpoint": {
|
||
|
|
"type": "string"
|
||
|
|
},
|
||
|
|
"key": {
|
||
|
|
"type": "string",
|
||
|
|
"encrypted": true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"defaults": {
|
||
|
|
"endpoint": {
|
||
|
|
"value": ""
|
||
|
|
},
|
||
|
|
"key": {
|
||
|
|
"value": ""
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"properties": {
|
||
|
|
"endPoint": {
|
||
|
|
"label": "End point",
|
||
|
|
"key": "endpoint",
|
||
|
|
"type": "text",
|
||
|
|
"description": "https://your-account.documents.azure.com"
|
||
|
|
},
|
||
|
|
"key": {
|
||
|
|
"label": "Key",
|
||
|
|
"key": "key",
|
||
|
|
"type": "password",
|
||
|
|
"description": "Enter your key"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"required": ["endpoint", "key"]
|
||
|
|
}
|