Airbyte · JSON Structure

Airbyte Declarative Source Definition Response Structure

DeclarativeSourceDefinitionResponse schema from Airbyte API

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

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

Properties

id name manifest version

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-declarative-source-definition-response-structure.json",
  "name": "DeclarativeSourceDefinitionResponse",
  "description": "DeclarativeSourceDefinitionResponse schema from Airbyte API",
  "type": "object",
  "properties": {
    "id": {
      "format": "UUID",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "manifest": {
      "$ref": "#/components/schemas/DeclarativeManifest"
    },
    "version": {
      "x-speakeasy-terraform-ignore": true,
      "$ref": "#/components/schemas/ManifestVersion"
    }
  },
  "required": [
    "id",
    "name",
    "manifest",
    "version"
  ]
}