Airbyte · Schema
StreamProperties
The stream properties associated with a connection.
Data IntegrationETLELTOpen SourceData PipelineConnectorsData
Properties
| Name | Type | Description |
|---|---|---|
| streamName | string | |
| syncModes | array | |
| streamnamespace | string | |
| defaultCursorField | array | |
| sourceDefinedCursorField | boolean | |
| sourceDefinedPrimaryKey | array | |
| propertyFields | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/StreamProperties",
"title": "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"
}
}
}
},
"x-speakeasy-component": true
}