Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 16 additions & 11 deletions airbyte_cdk/sources/declarative/declarative_component_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2192,7 +2192,8 @@ definitions:
type: object
additionalProperties: true
JsonDecoder:
title: Json Decoder
title: JSON
description: Select 'JSON' if the response is formatted as a JSON object.
type: object
required:
- type
Expand All @@ -2201,8 +2202,8 @@ definitions:
type: string
enum: [JsonDecoder]
JsonlDecoder:
title: JSONL Decoder
description: Use this if the response consists of JSON objects separated by new lines (`\n`) in JSONL format.
title: JSON Lines
description: Select 'JSON Lines' if the response consists of JSON objects separated by new lines ('\n') in JSONL format.
type: object
required:
- type
Expand Down Expand Up @@ -2327,8 +2328,8 @@ definitions:
type: object
additionalProperties: true
IterableDecoder:
title: Iterable Decoder
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.
title: Iterable
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.
type: object
required:
- type
Expand All @@ -2337,8 +2338,8 @@ definitions:
type: string
enum: [IterableDecoder]
XmlDecoder:
title: XML Decoder
description: Use this if the response is XML.
title: XML
description: Select 'XML' if the response consists of XML-formatted data.
type: object
required:
- type
Expand Down Expand Up @@ -2369,8 +2370,8 @@ definitions:
type: object
additionalProperties: true
ZipfileDecoder:
title: Zipfile Decoder
description: Decoder for response data that is returned as zipfile(s).
title: ZIP File
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.
type: object
additionalProperties: true
required:
Expand Down Expand Up @@ -2894,7 +2895,7 @@ definitions:
title: Lazy Read Pointer
description: If set, this will enable lazy reading, using the initial read of parent records to extract child records.
type: array
default: [ ]
default: []
items:
- type: string
interpolation_context:
Expand Down Expand Up @@ -3199,7 +3200,7 @@ definitions:
properties:
type:
type: string
enum: [ StateDelegatingStream ]
enum: [StateDelegatingStream]
name:
title: Name
description: The stream name.
Expand Down Expand Up @@ -3276,6 +3277,8 @@ definitions:
type: object
additionalProperties: true
GzipDecoder:
title: gzip
description: Select 'gzip' for response data that is compressed with gzip. Requires specifying an inner data type/decoder to parse the decompressed data.
type: object
required:
- type
Expand All @@ -3291,6 +3294,8 @@ definitions:
- "$ref": "#/definitions/JsonDecoder"
- "$ref": "#/definitions/JsonlDecoder"
CsvDecoder:
title: CSV
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: ',')."
type: object
required:
- type
Expand Down
Loading