{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-selected-field-info-schema.json", "title": "SelectedFieldInfo", "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.", "type": "object", "properties": { "fieldPath": { "type": "array", "items": { "type": "string" } } } }