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
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1424,8 +1424,8 @@ definitions:
1424
1424
title: Schema Loader
1425
1425
description: Component used to retrieve the schema for the current stream.
1426
1426
anyOf:
1427
-
- "$ref": "#/definitions/DynamicSchemaLoader"
1428
1427
- "$ref": "#/definitions/InlineSchemaLoader"
1428
+
- "$ref": "#/definitions/DynamicSchemaLoader"
1429
1429
- "$ref": "#/definitions/JsonFileSchemaLoader"
1430
1430
- "$ref": "#/definitions/CustomSchemaLoader"
1431
1431
# TODO we have move the transformation to the RecordSelector level in the code but kept this here for
@@ -2235,6 +2235,7 @@ definitions:
2235
2235
title: Schema
2236
2236
description: Describes a streams' schema. Refer to the <a href="https://docs.airbyte.com/understanding-airbyte/supported-data-types/">Data Types documentation</a> for more details on which types are valid.
2237
2237
type: object
2238
+
additionalProperties: true
2238
2239
JsonFileSchemaLoader:
2239
2240
title: Json File Schema Loader
2240
2241
description: Loads the schema from a json file.
@@ -3373,11 +3374,11 @@ definitions:
3373
3374
example:
3374
3375
- "Users"
3375
3376
full_refresh_stream:
3376
-
title: Retriever
3377
+
title: Full Refresh Stream
3377
3378
description: Component used to coordinate how records are extracted across stream slices and request pages when the state is empty or not provided.
3378
3379
"$ref": "#/definitions/DeclarativeStream"
3379
3380
incremental_stream:
3380
-
title: Retriever
3381
+
title: Incremental Stream
3381
3382
description: Component used to coordinate how records are extracted across stream slices and request pages when the state provided.
0 commit comments