ToolJet/plugins/packages/snowflake/lib/manifest.json
Akshay 71a5c122e9
Hotfix: marketplace fixes (#7397)
* add default manifest attributes for snowflake

* fix imports and clones with default datasource

* bumpt to v2.16.1
2023-09-08 14:19:52 +05:30

103 lines
2.1 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Snowflake datasource",
"description": "A schema defining Snowflake datasource",
"type": "database",
"source": {
"name": "Snowflake",
"kind": "snowflake",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"username": { "type": "string" },
"account": { "type": "string" },
"password": {
"type": "string",
"encrypted": true
},
"database": {
"type": "string"
},
"schema": {
"type": "string"
},
"warehouse": {
"type": "string"
},
"role": {
"type": "string"
}
}
},
"defaults": {
"username": {
"value": ""
},
"account": {
"value": ""
},
"password": {
"value": ""
},
"database": {
"value": ""
},
"schema": {
"value": ""
},
"warehouse": {
"value": ""
},
"role": {
"value": ""
}
},
"properties": {
"username": {
"label": "Username",
"key": "username",
"type": "text",
"description": "Enter username"
},
"account": {
"label": "Account",
"key": "account",
"type": "text",
"description": "Enter account"
},
"password": {
"label": "Password",
"key": "password",
"type": "password",
"description": "Enter password"
},
"database": {
"label": "Database",
"key": "database",
"type": "text",
"description": "Enter database"
},
"schema": {
"label": "Schema",
"key": "schema",
"type": "text",
"description": "Enter schema"
},
"warehouse": {
"label": "Warehouse",
"key": "warehouse",
"type": "text",
"description": "Enter warehouse"
},
"role": {
"label": "Role",
"key": "role",
"type": "text",
"description": "Enter role"
}
},
"required": ["account", "username", "password"]
}