Airbyte · Schema

Root Type for DefinitionResponse

Provides details of a single connector definition.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
id string
name string
dockerRepository string
dockerImageTag string
documentationUrl string
View JSON Schema on GitHub

JSON Schema

airbyte-definitionresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefinitionResponse",
  "title": "Root Type for DefinitionResponse",
  "description": "Provides details of a single connector definition.",
  "type": "object",
  "x-speakeasy-component": true,
  "required": [
    "id",
    "name",
    "dockerRepository",
    "dockerImageTag"
  ],
  "properties": {
    "id": {
      "format": "UUID",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dockerRepository": {
      "type": "string"
    },
    "dockerImageTag": {
      "type": "string"
    },
    "documentationUrl": {
      "type": "string"
    }
  }
}