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
49 changes: 49 additions & 0 deletions airbyte_cdk/sources/declarative/declarative_component_schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -987,6 +987,18 @@ definitions:
- "%Y-%m-%d %H:%M:%S.%f+00:00"
- "%s"
- "%ms"
suggestions:
- "%Y-%m-%d"
- "%Y-%m-%d %H:%M:%S"
- "%Y-%m-%dT%H:%M:%S"
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
- "%Y-%m-%dT%H:%M:%S.%fZ"
- "%Y-%m-%dT%H:%M:%S.%f%z"
- "%Y-%m-%d %H:%M:%S.%f+00:00"
- "%s"
- "%ms"
- "%s_as_float"
start_datetime:
title: Start Datetime
description: The datetime that determines the earliest record that should be synced.
Expand Down Expand Up @@ -1061,6 +1073,18 @@ definitions:
- "%s"
- "%ms"
- "%s_as_float"
suggestions:
- "%Y-%m-%d"
- "%Y-%m-%d %H:%M:%S"
- "%Y-%m-%dT%H:%M:%S"
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
- "%Y-%m-%dT%H:%M:%S.%fZ"
- "%Y-%m-%dT%H:%M:%S.%f%z"
- "%Y-%m-%d %H:%M:%S.%f+00:00"
- "%s"
- "%ms"
- "%s_as_float"
cursor_granularity:
title: Cursor Granularity
description: |
Expand All @@ -1075,6 +1099,13 @@ definitions:
type: string
examples:
- "PT1S"
suggestions:
- "PT0.000001S"
- "PT0.001S"
- "PT1S"
- "PT1M"
- "PT1H"
- "P1D"
is_data_feed:
title: Data Feed API
description: A data feed API is an API that does not allow filtering and paginates the content from the most recent to the least recent. Given this, the CDK needs to know when to stop paginating and this field will generate a stop condition for pagination.
Expand Down Expand Up @@ -1133,6 +1164,12 @@ definitions:
examples:
- "P1W"
- "{{ config['step_increment'] }}"
suggestions:
- "PT1H"
- "P1D"
- "P1W"
- "P1M"
- "P1Y"
$parameters:
type: object
additionalProperties: true
Expand Down Expand Up @@ -2804,6 +2841,18 @@ definitions:
- "%Y-%m-%dT%H:%M:%S.%f%z"
- "%Y-%m-%d"
- "%s"
suggestions:
- "%Y-%m-%d"
- "%Y-%m-%d %H:%M:%S"
- "%Y-%m-%dT%H:%M:%S"
- "%Y-%m-%dT%H:%M:%SZ"
- "%Y-%m-%dT%H:%M:%S%z"
- "%Y-%m-%dT%H:%M:%S.%fZ"
- "%Y-%m-%dT%H:%M:%S.%f%z"
- "%Y-%m-%d %H:%M:%S.%f+00:00"
- "%s"
- "%ms"
- "%s_as_float"
max_datetime:
title: Max Datetime
description: Ceiling applied on the datetime value. Must be formatted with the datetime_format field.
Expand Down
Loading