{ "$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 }