Airbyte · JSON Structure

Airbyte Stream Properties Structure

The stream properties associated with a connection.

Type: object Properties: 7
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

StreamProperties is a JSON Structure definition published by Airbyte, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

streamName syncModes streamnamespace defaultCursorField sourceDefinedCursorField sourceDefinedPrimaryKey propertyFields

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-stream-properties-structure.json",
  "name": "StreamProperties",
  "description": "The stream properties associated with a connection.",
  "type": "object",
  "properties": {
    "streamName": {
      "type": "string"
    },
    "syncModes": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ConnectionSyncModeEnum"
      }
    },
    "streamnamespace": {
      "type": "string"
    },
    "defaultCursorField": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "sourceDefinedCursorField": {
      "type": "boolean"
    },
    "sourceDefinedPrimaryKey": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    },
    "propertyFields": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "string"
        }
      }
    }
  }
}