Airbyte · Schema

SelectedFieldInfo

Path to a field/column/property in a stream to be selected. For example, if the field to be selected is a database column called "foo", this will be ["foo"]. Use multiple path elements for nested schemas.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
fieldPath array
View JSON Schema on GitHub

JSON Schema

airbyte-selectedfieldinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SelectedFieldInfo",
  "title": "SelectedFieldInfo",
  "type": "object",
  "description": "Path to a field/column/property in a stream to be selected. For example, if the field to be selected is a database column called \"foo\", this will be [\"foo\"]. Use multiple path elements for nested schemas.",
  "properties": {
    "fieldPath": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "x-speakeasy-component": true
}