Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add document mappings as lists of fields #94

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -484,6 +484,21 @@ definitions:
If the stream is resumable or not. Should be set to true if the stream supports incremental. Defaults to false.
Primarily used by the Platform in Full Refresh to determine if a Full Refresh stream should actually be treated as incremental within a job.
type: boolean
document_mapping:
description: Describes how to map fields to documents.
title:
type: string
description: The name of the field to use as title for the document.
content:
type: array
description: The name of the fields to use as content in the document.
items:
type: string
metadata:
type: array
description: The name of the fields to use as metadata in the document.
items:
type: string
ConfiguredAirbyteCatalog:
type: object
additionalProperties: true
Expand Down
Loading