Airbyte · JSON Structure

Airbyte Definition Response Structure

Provides details of a single connector definition.

Type: object Properties: 5 Required: 4
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

DefinitionResponse is a JSON Structure definition published by Airbyte, describing 5 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id name dockerRepository dockerImageTag documentationUrl

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-definition-response-structure.json",
  "name": "DefinitionResponse",
  "description": "Provides details of a single connector definition.",
  "type": "object",
  "properties": {
    "id": {
      "format": "UUID",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dockerRepository": {
      "type": "string"
    },
    "dockerImageTag": {
      "type": "string"
    },
    "documentationUrl": {
      "type": "string"
    }
  },
  "required": [
    "id",
    "name",
    "dockerRepository",
    "dockerImageTag"
  ]
}