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
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -2193,6 +2193,7 @@ definitions:
2193
2193
additionalProperties: true
2194
2194
JsonDecoder:
2195
2195
title: Json Decoder
2196
+
description: Select 'JSON' as the decoder to parse the response as JSON.
2196
2197
type: object
2197
2198
required:
2198
2199
- type
@@ -2202,7 +2203,7 @@ definitions:
2202
2203
enum: [JsonDecoder]
2203
2204
JsonlDecoder:
2204
2205
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.
2206
2207
type: object
2207
2208
required:
2208
2209
- type
@@ -2328,7 +2329,7 @@ definitions:
2328
2329
additionalProperties: true
2329
2330
IterableDecoder:
2330
2331
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.
2332
2333
type: object
2333
2334
required:
2334
2335
- type
@@ -2338,7 +2339,7 @@ definitions:
2338
2339
enum: [IterableDecoder]
2339
2340
XmlDecoder:
2340
2341
title: XML Decoder
2341
-
description: Use this if the response is XML.
2342
+
description: Select 'XML' if the response consists of XML-formatted data.
2342
2343
type: object
2343
2344
required:
2344
2345
- type
@@ -2370,7 +2371,7 @@ definitions:
2370
2371
additionalProperties: true
2371
2372
ZipfileDecoder:
2372
2373
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.
2374
2375
type: object
2375
2376
additionalProperties: true
2376
2377
required:
@@ -3276,6 +3277,8 @@ definitions:
3276
3277
type: object
3277
3278
additionalProperties: true
3278
3279
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.
3279
3282
type: object
3280
3283
required:
3281
3284
- type
@@ -3291,6 +3294,8 @@ definitions:
3291
3294
- "$ref": "#/definitions/JsonDecoder"
3292
3295
- "$ref": "#/definitions/JsonlDecoder"
3293
3296
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: ',')."
0 commit comments