ToolJet/marketplace/plugins/qdrant/lib/manifest.json
2025-08-03 12:39:18 +05:30

45 lines
No EOL
1.3 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/ToolJet/ToolJet/develop/plugins/schemas/manifest.schema.json",
"title": "Qdrant datasource",
"description": "A schema defining Qdrant datasource",
"type": "api",
"source": {
"name": "Qdrant",
"kind": "qdrant",
"exposedVariables": {
"isLoading": false,
"data": {},
"rawData": {}
},
"options": {
"url": {
"type": "string"
},
"apiKey": {
"type": "string",
"encrypted": true
}
}
},
"defaults": {},
"properties": {
"url": {
"label": "Qdrant URL",
"key": "url",
"type": "text",
"description": "Enter your Qdrant URL.",
"helpText": "<a href='https://qdrant.tech/documentation/quickstart-cloud/#authenticate-via-sdks' target='_blank' rel='noreferrer'>REST URL</a> to authenticate the requests of the Qdrant instance."
},
"apiKey": {
"label": "API Key",
"key": "apiKey",
"type": "password",
"description": "Enter your Qdrant API key",
"helpText": "An <a href='https://qdrant.tech/documentation/quickstart-cloud/#setup-a-qdrant-cloud-cluster' target='_blank' rel='noreferrer'>API key</a> to authenticate the requests.",
"encrypted": true
}
},
"required": [
"url"
]
}