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-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -2192,7 +2192,7 @@ definitions:
2192
2192
type: object
2193
2193
additionalProperties: true
2194
2194
JsonDecoder:
2195
-
title: Json Decoder
2195
+
title: JSON
2196
2196
description: Select 'JSON' if the response is formatted as a JSON object.
2197
2197
type: object
2198
2198
required:
@@ -2202,7 +2202,7 @@ definitions:
2202
2202
type: string
2203
2203
enum: [JsonDecoder]
2204
2204
JsonlDecoder:
2205
-
title: JSONL Decoder
2205
+
title: JSON Lines
2206
2206
description: Select 'JSONL' if the response consists of JSON objects separated by new lines ('\n') in JSONL format.
2207
2207
type: object
2208
2208
required:
@@ -2328,7 +2328,7 @@ definitions:
2328
2328
type: object
2329
2329
additionalProperties: true
2330
2330
IterableDecoder:
2331
-
title: Iterable Decoder
2331
+
title: Iterable
2332
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.
2333
2333
type: object
2334
2334
required:
@@ -2338,7 +2338,7 @@ definitions:
2338
2338
type: string
2339
2339
enum: [IterableDecoder]
2340
2340
XmlDecoder:
2341
-
title: XML Decoder
2341
+
title: XML
2342
2342
description: Select 'XML' if the response consists of XML-formatted data.
2343
2343
type: object
2344
2344
required:
@@ -2370,7 +2370,7 @@ definitions:
2370
2370
type: object
2371
2371
additionalProperties: true
2372
2372
ZipfileDecoder:
2373
-
title: Zipfile Decoder
2373
+
title: ZIP File
2374
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.
2375
2375
type: object
2376
2376
additionalProperties: true
@@ -2895,7 +2895,7 @@ definitions:
2895
2895
title: Lazy Read Pointer
2896
2896
description: If set, this will enable lazy reading, using the initial read of parent records to extract child records.
2897
2897
type: array
2898
-
default: []
2898
+
default: []
2899
2899
items:
2900
2900
- type: string
2901
2901
interpolation_context:
@@ -3200,7 +3200,7 @@ definitions:
3200
3200
properties:
3201
3201
type:
3202
3202
type: string
3203
-
enum: [StateDelegatingStream]
3203
+
enum: [StateDelegatingStream]
3204
3204
name:
3205
3205
title: Name
3206
3206
description: The stream name.
@@ -3277,7 +3277,7 @@ definitions:
3277
3277
type: object
3278
3278
additionalProperties: true
3279
3279
GzipDecoder:
3280
-
title: Gzip Decoder
3280
+
title: gzip
3281
3281
description: Select 'gzip' for response data that is compressed with gzip. Requires specifying an inner data type/decoder to parse the decompressed data.
3282
3282
type: object
3283
3283
required:
@@ -3294,7 +3294,7 @@ definitions:
3294
3294
- "$ref": "#/definitions/JsonDecoder"
3295
3295
- "$ref": "#/definitions/JsonlDecoder"
3296
3296
CsvDecoder:
3297
-
title: CSV Decoder
3297
+
title: CSV
3298
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