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
+14-9
Original file line number
Diff line number
Diff line change
@@ -2197,7 +2197,8 @@ definitions:
2197
2197
type: object
2198
2198
additionalProperties: true
2199
2199
JsonDecoder:
2200
-
title: Json Decoder
2200
+
title: JSON
2201
+
description: Select 'JSON' if the response is formatted as a JSON object.
2201
2202
type: object
2202
2203
required:
2203
2204
- type
@@ -2206,8 +2207,8 @@ definitions:
2206
2207
type: string
2207
2208
enum: [JsonDecoder]
2208
2209
JsonlDecoder:
2209
-
title: JSONL Decoder
2210
-
description: Use this if the response consists of JSON objects separated by new lines (`\n`) in JSONL format.
2210
+
title: JSON Lines
2211
+
description: Select 'JSON Lines' if the response consists of JSON objects separated by new lines ('\n') in JSONL format.
2211
2212
type: object
2212
2213
required:
2213
2214
- type
@@ -2332,8 +2333,8 @@ definitions:
2332
2333
type: object
2333
2334
additionalProperties: true
2334
2335
IterableDecoder:
2335
-
title: Iterable Decoder
2336
-
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.
2336
+
title: Iterable
2337
+
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.
2337
2338
type: object
2338
2339
required:
2339
2340
- type
@@ -2342,8 +2343,8 @@ definitions:
2342
2343
type: string
2343
2344
enum: [IterableDecoder]
2344
2345
XmlDecoder:
2345
-
title: XML Decoder
2346
-
description: Use this if the response is XML.
2346
+
title: XML
2347
+
description: Select 'XML' if the response consists of XML-formatted data.
2347
2348
type: object
2348
2349
required:
2349
2350
- type
@@ -2374,8 +2375,8 @@ definitions:
2374
2375
type: object
2375
2376
additionalProperties: true
2376
2377
ZipfileDecoder:
2377
-
title: Zipfile Decoder
2378
-
description: Decoder for response data that is returned as zipfile(s).
2378
+
title: ZIP File
2379
+
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.
2379
2380
type: object
2380
2381
additionalProperties: true
2381
2382
required:
@@ -3281,6 +3282,8 @@ definitions:
3281
3282
type: object
3282
3283
additionalProperties: true
3283
3284
GzipDecoder:
3285
+
title: gzip
3286
+
description: Select 'gzip' for response data that is compressed with gzip. Requires specifying an inner data type/decoder to parse the decompressed data.
3284
3287
type: object
3285
3288
required:
3286
3289
- type
@@ -3296,6 +3299,8 @@ definitions:
3296
3299
- "$ref": "#/definitions/JsonDecoder"
3297
3300
- "$ref": "#/definitions/JsonlDecoder"
3298
3301
CsvDecoder:
3302
+
title: CSV
3303
+
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