Airbyte · Schema

ConfiguredStreamMapper

ConfiguredStreamMapper schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
id string
type object
mapperConfiguration object
View JSON Schema on GitHub

JSON Schema

airbyte-configured-stream-mapper-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-configured-stream-mapper-schema.json",
  "title": "ConfiguredStreamMapper",
  "description": "ConfiguredStreamMapper schema from Airbyte API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "type": {
      "$ref": "#/components/schemas/StreamMapperType"
    },
    "mapperConfiguration": {
      "$ref": "#/components/schemas/MapperConfiguration"
    }
  },
  "required": [
    "type",
    "mapperConfiguration"
  ]
}