Skip to content

Commit

Permalink
Description changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
davinchia committed May 13, 2024
1 parent 9e529a1 commit 074217f
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,10 @@ definitions:
items:
"$ref": "#/definitions/SyncMode"
source_defined_cursor:
description: If the source defines the cursor field, then any other cursor field inputs will be ignored. If it does not, either the user_provided one is used, or the default one is used as a backup.
description: |-
If the source defines the cursor field, then any other cursor field inputs will be ignored. If it does not,
either the user_provided one is used, or the default one is used as a backup. This field must be set if
is_resumable is set to true, including resumable full refresh synthetic cursors.
type: boolean
default_cursor_field:
description: Path to the field that will be used to determine if a record is new or modified since the last sync. If not provided by the source, the end user will have to specify the comparable themselves.
Expand All @@ -446,6 +449,11 @@ definitions:
namespace:
description: Optional Source-defined namespace. Currently only used by JDBC destinations to determine what schema to write to. Airbyte streams from the same sources should have the same namespace.
type: string
is_resumable:
description: |-
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
ConfiguredAirbyteCatalog:
type: object
additionalProperties: true
Expand Down

0 comments on commit 074217f

Please sign in to comment.