Airbyte · Schema
DestinationResponse
Provides details of a single destination.
Data IntegrationETLELTOpen SourceData PipelineConnectorsData
Properties
| Name | Type | Description |
|---|---|---|
| destinationId | string | |
| name | string | |
| destinationType | string | |
| definitionId | string | |
| workspaceId | string | |
| configuration | object | |
| createdAt | integer | |
| resourceAllocation | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-destination-response-schema.json",
"title": "DestinationResponse",
"description": "Provides details of a single destination.",
"type": "object",
"properties": {
"destinationId": {
"format": "UUID",
"type": "string"
},
"name": {
"type": "string"
},
"destinationType": {
"type": "string"
},
"definitionId": {
"format": "UUID",
"type": "string"
},
"workspaceId": {
"format": "UUID",
"type": "string"
},
"configuration": {
"$ref": "#/components/schemas/DestinationConfiguration"
},
"createdAt": {
"format": "int64",
"type": "integer"
},
"resourceAllocation": {
"$ref": "#/components/schemas/ScopedResourceRequirements"
}
},
"required": [
"destinationId",
"name",
"destinationType",
"definitionId",
"workspaceId",
"configuration",
"createdAt"
]
}