Skip to main content

ConnectorsConfig Schema

The ConnectorsConfig schema represents the configuration for service connectors in the ConfidentialMind system. It defines the connections between different services or resources.

Properties

PropertyTypeDescription
connectorsConnector[]Array of connector configurations

Connector

PropertyTypeDescription
typeConnectorTypeType of the connector
labelstringLabel for the connector
config_idstringConfiguration ID for the connector
stack_idstring | nullOptional stack ID

Enums

ConnectorType

  • llm
  • bucket
  • database
  • api

Usage

This schema is used as part of the connectors field in the ServiceEntrySchema. It defines the connections between different services or resources in the ConfidentialMind system.

Example

{
"connectors": [
{
"type": "database",
"label": "Main Database",
"config_id": "db-001",
"stack_id": null
},
{
"type": "llm",
"label": "Language Model",
"config_id": "llm-002",
"stack_id": "stack-123"
}
]
}

This schema is crucial for defining the relationships and connections between various components within the ConfidentialMind ecosystem.