Airbyte · Schema

DeclarativeSourceDefinitionResponse

DeclarativeSourceDefinitionResponse schema from Airbyte API

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
id string
name string
manifest object
version object
View JSON Schema on GitHub

JSON Schema

airbyte-declarative-source-definition-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-declarative-source-definition-response-schema.json",
  "title": "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"
  ]
}