Skip to content

Commit 5d82e14

Browse files
authored
fix: (CDK) (DpathExtractor) - fix schema causing the typescript type generation in the FE (#406)
1 parent 969dec1 commit 5d82e14

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

+9-9
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ definitions:
109109
description: List of transformations (path and corresponding value) that will be added to the record.
110110
type: array
111111
items:
112-
- "$ref": "#/definitions/AddedFieldDefinition"
112+
"$ref": "#/definitions/AddedFieldDefinition"
113113
$parameters:
114114
type: object
115115
additionalProperties: true
@@ -1657,7 +1657,7 @@ definitions:
16571657
description: List of potentially nested fields describing the full path of the field to extract. Use "*" to extract all values from an array. See more info in the [docs](https://docs.airbyte.com/connector-development/config-based/understanding-the-yaml-file/record-selector).
16581658
type: array
16591659
items:
1660-
- type: string
1660+
type: string
16611661
interpolation_context:
16621662
- config
16631663
examples:
@@ -2073,29 +2073,29 @@ definitions:
20732073
type: array
20742074
default: []
20752075
items:
2076-
- type: string
2076+
type: string
20772077
interpolation_context:
20782078
- config
20792079
key_pointer:
20802080
title: Key Path
20812081
description: List of potentially nested fields describing the full path of the field key to extract.
20822082
type: array
20832083
items:
2084-
- type: string
2084+
type: string
20852085
interpolation_context:
20862086
- config
20872087
type_pointer:
20882088
title: Type Path
20892089
description: List of potentially nested fields describing the full path of the field type to extract.
20902090
type: array
20912091
items:
2092-
- type: string
2092+
type: string
20932093
interpolation_context:
20942094
- config
20952095
types_mapping:
20962096
type: array
20972097
items:
2098-
- "$ref": "#/definitions/TypesMap"
2098+
"$ref": "#/definitions/TypesMap"
20992099
$parameters:
21002100
type: object
21012101
additionalProperties: true
@@ -2251,7 +2251,7 @@ definitions:
22512251
description: A path to field that needs to be flattened.
22522252
type: array
22532253
items:
2254-
- type: string
2254+
type: string
22552255
examples:
22562256
- ["data"]
22572257
- ["data", "*", "field"]
@@ -3526,7 +3526,7 @@ definitions:
35263526
description: A list of potentially nested fields indicating the full path where value will be added or updated.
35273527
type: array
35283528
items:
3529-
- type: string
3529+
type: string
35303530
interpolation_context:
35313531
- config
35323532
- components_values
@@ -3602,7 +3602,7 @@ definitions:
36023602
description: A list of potentially nested fields indicating the full path in source config file where streams configs located.
36033603
type: array
36043604
items:
3605-
- type: string
3605+
type: string
36063606
interpolation_context:
36073607
- parameters
36083608
examples:

0 commit comments

Comments
 (0)