Airbyte · Schema
Root Type for ConnectionResponse
Provides details of a single connection.
Data IntegrationETLELTOpen SourceData PipelineConnectorsData
Properties
| Name | Type | Description |
|---|---|---|
| connectionId | string | |
| name | string | |
| sourceId | string | |
| destinationId | string | |
| workspaceId | string | |
| status | object | |
| schedule | object | |
| nonBreakingSchemaUpdatesBehavior | object | |
| namespaceDefinition | object | |
| namespaceFormat | string | |
| prefix | string | |
| configurations | object | |
| createdAt | integer | |
| tags | array | |
| statusReason | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ConnectionResponse",
"title": "Root Type for ConnectionResponse",
"description": "Provides details of a single connection.",
"type": "object",
"required": [
"connectionId",
"name",
"sourceId",
"destinationId",
"workspaceId",
"status",
"schedule",
"configurations",
"createdAt",
"tags"
],
"properties": {
"connectionId": {
"format": "UUID",
"type": "string"
},
"name": {
"type": "string"
},
"sourceId": {
"format": "UUID",
"type": "string"
},
"destinationId": {
"format": "UUID",
"type": "string"
},
"workspaceId": {
"format": "UUID",
"type": "string"
},
"status": {
"$ref": "#/components/schemas/ConnectionStatusEnum"
},
"schedule": {
"$ref": "#/components/schemas/ConnectionScheduleResponse"
},
"nonBreakingSchemaUpdatesBehavior": {
"$ref": "#/components/schemas/NonBreakingSchemaUpdatesBehaviorEnum"
},
"namespaceDefinition": {
"$ref": "#/components/schemas/NamespaceDefinitionEnum"
},
"namespaceFormat": {
"type": "string"
},
"prefix": {
"type": "string"
},
"configurations": {
"$ref": "#/components/schemas/StreamConfigurations"
},
"createdAt": {
"format": "int64",
"type": "integer"
},
"tags": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Tag"
}
},
"statusReason": {
"type": "string"
}
},
"x-speakeasy-entity": "Connection",
"x-speakeasy-param-suppress-computed-diff": true,
"x-speakeasy-component": true
}