Datapackconnections Model
Overview
The datapackconnections table stores details about connections related to data packs. These connections define how data packs interact with external services, systems, or environments, storing credentials, connection types, and other related data.
Fields
| Field | Type | Description | Required |
|---|---|---|---|
| id | string | id field | ❌ |
| connectionType | string | connectionType field | ✅ |
| connectorId | string | connectorId field | ✅ |
| connectionString | string | connectionString field | ✅ |
| connectionCredentials | string | connectionCredentials field | ✅ |
| environmentId | string | environmentId field | ✅ |
| created_at | date | created_at field | ❌ |
| modified_at | date | modified_at field | ❌ |
| datapackId | string | datapackId field | ✅ |
Relationships
- Belongsto Unknown
- Belongsto Unknown
Sample JSON
{
"id": "example_value",
"connectionType": "example_value",
"connectorId": "example_value",
"connectionString": "example_value",
"connectionCredentials": "example_value",
"environmentId": "example_value",
"created_at": "example_value",
"modified_at": "example_value",
"datapackId": "example_value"
}