You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: airbyte_cdk/sources/declarative/declarative_component_schema.yaml
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -3145,28 +3145,19 @@ definitions:
3145
3145
type:
3146
3146
type: string
3147
3147
enum: [ParentStreamConfig]
3148
-
lazy_read_pointer:
3149
-
title: Lazy Read Pointer
3150
-
description: If set, this will enable lazy reading, using the initial read of parent records to extract child records.
3151
-
type: array
3152
-
default: []
3153
-
items:
3154
-
type: string
3155
-
interpolation_context:
3156
-
- config
3148
+
stream:
3149
+
title: Parent Stream
3150
+
description: Reference to the parent stream.
3151
+
anyOf:
3152
+
- "$ref": "#/definitions/DeclarativeStream"
3153
+
- "$ref": "#/definitions/StateDelegatingStream"
3157
3154
parent_key:
3158
3155
title: Parent Key
3159
3156
description: The primary key of records from the parent stream that will be used during the retrieval of records for the current substream. This parent identifier field is typically a characteristic of the child records being extracted from the source API.
3160
3157
type: string
3161
3158
examples:
3162
3159
- "id"
3163
3160
- "{{ config['parent_record_id'] }}"
3164
-
stream:
3165
-
title: Parent Stream
3166
-
description: Reference to the parent stream.
3167
-
anyOf:
3168
-
- "$ref": "#/definitions/DeclarativeStream"
3169
-
- "$ref": "#/definitions/StateDelegatingStream"
3170
3161
partition_field:
3171
3162
title: Current Parent Key Value Identifier
3172
3163
description: While iterating over parent records during a sync, the parent_key value can be referenced by using this field.
@@ -3183,6 +3174,15 @@ definitions:
3183
3174
description: Indicates whether the parent stream should be read incrementally based on updates in the child stream.
3184
3175
type: boolean
3185
3176
default: false
3177
+
lazy_read_pointer:
3178
+
title: Lazy Read Pointer
3179
+
description: If set, this will enable lazy reading, using the initial read of parent records to extract child records.
3180
+
type: array
3181
+
default: []
3182
+
items:
3183
+
type: string
3184
+
interpolation_context:
3185
+
- config
3186
3186
extra_fields:
3187
3187
title: Extra Fields
3188
3188
description: Array of field paths to include as additional fields in the stream slice. Each path is an array of strings representing keys to access fields in the respective parent record. Accessible via `stream_slice.extra_fields`. Missing fields are set to `None`.
@@ -3617,17 +3617,17 @@ definitions:
3617
3617
partition_router:
3618
3618
title: Partition Router
3619
3619
description: PartitionRouter component that describes how to partition the stream, enabling incremental syncs and checkpointing.
0 commit comments