{ "$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" } } } } }