Skip to content

Commit c18d141

Browse files
committed
update to align w/ builder options
1 parent 9cdcfca commit c18d141

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2192,7 +2192,7 @@ definitions:
21922192
type: object
21932193
additionalProperties: true
21942194
JsonDecoder:
2195-
title: Json Decoder
2195+
title: JSON
21962196
description: Select 'JSON' if the response is formatted as a JSON object.
21972197
type: object
21982198
required:
@@ -2202,7 +2202,7 @@ definitions:
22022202
type: string
22032203
enum: [JsonDecoder]
22042204
JsonlDecoder:
2205-
title: JSONL Decoder
2205+
title: JSON Lines
22062206
description: Select 'JSONL' if the response consists of JSON objects separated by new lines ('\n') in JSONL format.
22072207
type: object
22082208
required:
@@ -2328,7 +2328,7 @@ definitions:
23282328
type: object
23292329
additionalProperties: true
23302330
IterableDecoder:
2331-
title: Iterable Decoder
2331+
title: Iterable
23322332
description: Select 'Iterable' if the response consists of strings separated by new lines (`\n`). The string will then be wrapped into a JSON object with the `record` key.
23332333
type: object
23342334
required:
@@ -2338,7 +2338,7 @@ definitions:
23382338
type: string
23392339
enum: [IterableDecoder]
23402340
XmlDecoder:
2341-
title: XML Decoder
2341+
title: XML
23422342
description: Select 'XML' if the response consists of XML-formatted data.
23432343
type: object
23442344
required:
@@ -2370,7 +2370,7 @@ definitions:
23702370
type: object
23712371
additionalProperties: true
23722372
ZipfileDecoder:
2373-
title: Zipfile Decoder
2373+
title: ZIP File
23742374
description: Select 'ZIP'file" for response data that is returned as a zipfile. Requires specifying an inner data type/decoder to parse the unzipped data.
23752375
type: object
23762376
additionalProperties: true
@@ -2895,7 +2895,7 @@ definitions:
28952895
title: Lazy Read Pointer
28962896
description: If set, this will enable lazy reading, using the initial read of parent records to extract child records.
28972897
type: array
2898-
default: [ ]
2898+
default: []
28992899
items:
29002900
- type: string
29012901
interpolation_context:
@@ -3200,7 +3200,7 @@ definitions:
32003200
properties:
32013201
type:
32023202
type: string
3203-
enum: [ StateDelegatingStream ]
3203+
enum: [StateDelegatingStream]
32043204
name:
32053205
title: Name
32063206
description: The stream name.
@@ -3277,7 +3277,7 @@ definitions:
32773277
type: object
32783278
additionalProperties: true
32793279
GzipDecoder:
3280-
title: Gzip Decoder
3280+
title: gzip
32813281
description: Select 'gzip' for response data that is compressed with gzip. Requires specifying an inner data type/decoder to parse the decompressed data.
32823282
type: object
32833283
required:
@@ -3294,7 +3294,7 @@ definitions:
32943294
- "$ref": "#/definitions/JsonDecoder"
32953295
- "$ref": "#/definitions/JsonlDecoder"
32963296
CsvDecoder:
3297-
title: CSV Decoder
3297+
title: CSV
32983298
description: "Select 'CSV' for response data that is formatted as CSV (comma-separated values). Can specify an encoding (default: 'utf-8') and a delimiter (default: ',')."
32993299
type: object
33003300
required:

0 commit comments

Comments
 (0)