Datapackconnectors Model
Overview
The datapackconnectors table stores the configuration details for the connectors that are used in data packs. Each connector defines a specific type of integration with external services or systems, including the necessary connection parameters, credentials, and metadata.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | id field | ❌ |
| UniqueId | string | UniqueId field | ✅ |
| Title | string | Title field | ✅ |
| ItemType | string | ItemType field | ✅ |
| ConnectionType | number | ConnectionType field | ✅ |
| ImagePath | string | ImagePath field | ❌ |
| created_at | date | created_at field | ❌ |
| modified_at | date | modified_at field | ❌ |
| DbProvider | string | DbProvider field | ✅ |
| CredentialsFormat | string | CredentialsFormat field | ✅ |
| CredentialsMetaData | array | CredentialsMetaData field | ✅ |
| active | string | active field | ❌ |
Sample JSON
{
"id": "example_value",
"UniqueId": "example_value",
"Title": "example_value",
"ItemType": "example_value",
"ConnectionType": "example_value",
"ImagePath": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"DbProvider": "example_value",
"CredentialsFormat": "example_value",
"CredentialsMetaData": "example_value",
"active": "example_value"
}