Skip to content

Commit fabfec6

Browse files
committed
update title & descriptions for decoder tooltip
1 parent 923acc2 commit fabfec6

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

airbyte_cdk/sources/declarative/declarative_component_schema.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2193,6 +2193,7 @@ definitions:
21932193
additionalProperties: true
21942194
JsonDecoder:
21952195
title: Json Decoder
2196+
description: Select 'JSON' as the decoder to parse the response as JSON.
21962197
type: object
21972198
required:
21982199
- type
@@ -2202,7 +2203,7 @@ definitions:
22022203
enum: [JsonDecoder]
22032204
JsonlDecoder:
22042205
title: JSONL Decoder
2205-
description: Use this if the response consists of JSON objects separated by new lines (`\n`) in JSONL format.
2206+
description: Select 'JSONL' if the response consists of JSON objects separated by new lines ('\n') in JSONL format.
22062207
type: object
22072208
required:
22082209
- type
@@ -2328,7 +2329,7 @@ definitions:
23282329
additionalProperties: true
23292330
IterableDecoder:
23302331
title: Iterable Decoder
2331-
description: Use this if the response consists of strings separated by new lines (`\n`). The Decoder will wrap each row into a JSON object with the `record` key.
2332+
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.
23322333
type: object
23332334
required:
23342335
- type
@@ -2338,7 +2339,7 @@ definitions:
23382339
enum: [IterableDecoder]
23392340
XmlDecoder:
23402341
title: XML Decoder
2341-
description: Use this if the response is XML.
2342+
description: Select 'XML' if the response consists of XML-formatted data.
23422343
type: object
23432344
required:
23442345
- type
@@ -2370,7 +2371,7 @@ definitions:
23702371
additionalProperties: true
23712372
ZipfileDecoder:
23722373
title: Zipfile Decoder
2373-
description: Decoder for response data that is returned as zipfile(s).
2374+
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.
23742375
type: object
23752376
additionalProperties: true
23762377
required:
@@ -3276,6 +3277,8 @@ definitions:
32763277
type: object
32773278
additionalProperties: true
32783279
GzipDecoder:
3280+
title: Gzip Decoder
3281+
description: Select 'gzip' for response data that is compressed with gzip. Requires specifying an inner data type/decoder to parse the decompressed data.
32793282
type: object
32803283
required:
32813284
- type
@@ -3291,6 +3294,8 @@ definitions:
32913294
- "$ref": "#/definitions/JsonDecoder"
32923295
- "$ref": "#/definitions/JsonlDecoder"
32933296
CsvDecoder:
3297+
title: CSV Decoder
3298+
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: ',')."
32943299
type: object
32953300
required:
32963301
- type

0 commit comments

Comments
 (0)