-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Protocol change: Define a set of well-known data types (#17486)
* add WellKnownTypes.yaml * rename to snakecase + put in airbyte-protocol * add examples * more descriptoins * descriptions, more restrictions, better regex * update documentation * explicitly call out BC support
- Loading branch information
Showing
2 changed files
with
122 additions
and
57 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
airbyte-protocol/protocol-models/src/main/resources/airbyte_protocol/well_known_types.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# Regexes are purely illustrative and need to be workshopped: BC dates shouldn't require 4-digit years; years may have >=5 digits; etc | ||
definitions: | ||
String: | ||
type: string | ||
description: Arbitrary text | ||
BinaryData: | ||
type: string | ||
description: > | ||
Arbitrary binary data. Represented as base64-encoded strings in the JSON transport. | ||
In the future, if we support other transports, may be encoded differently. | ||
# All credit to https://stackoverflow.com/a/475217 for this pattern | ||
pattern: ^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$ | ||
Date: | ||
type: string | ||
# Examples: | ||
# 2022-01-23 | ||
# 2022-01-23 BC | ||
# format: date is a superset of what we want, so we cannot use it here (e.g. it accepts 2-digit years) | ||
pattern: ^\d{4}-\d{2}-\d{2}( BC)?$ | ||
description: RFC 3339§5.6's full-date format, extended with BC era support | ||
TimestampWithTimezone: | ||
type: string | ||
# Examples: | ||
# 2022-01-23T01:23:45Z | ||
# 2022-01-23T01:23:45.678-11:30 BC | ||
# format: date-time is a superset of what we want, so we cannot use it here (e.g. it accepts 2-digit years) | ||
pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+\-]\d{1,2}:\d{2})( BC)?$ | ||
description: > | ||
An instant in time. Frequently simply referred to as just a timestamp, or timestamptz. | ||
Uses RFC 3339§5.6's date-time format, requiring a "T" separator, and extended with BC era support. | ||
Note that we do _not_ accept Unix epochs here. | ||
TimestampWithoutTimezone: | ||
type: string | ||
# Examples: | ||
# 2022-01-23T01:23:45 | ||
# 2022-01-23T01:23:45.678 BC | ||
# 2022-01-23T01:23:45.678 | ||
pattern: ^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?( BC)?$ | ||
description: > | ||
Also known as a localdatetime, or just datetime. | ||
Under RFC 3339§5.6, this would be represented as `full-date "T" partial-time`, extended with BC era support. | ||
TimeWithTimezone: | ||
type: string | ||
# Examples: | ||
# 01:23:45Z | ||
# 01:23:45.678-11:30 | ||
pattern: ^\d{2}:\d{2}:\d{2}(\.\d+)?(Z|[+\-]\d{1,2}:\d{2})$ | ||
description: An RFC 3339§5.6 full-time | ||
TimeWithoutTimezone: | ||
type: string | ||
# Examples: | ||
# 01:23:45 | ||
# 01:23:45.678 | ||
pattern: ^\d{2}:\d{2}:\d{2}(\.\d+)?$ | ||
description: An RFC 3339§5.6 partial-time | ||
Number: | ||
type: string | ||
oneOf: | ||
- pattern: -?(0|[0-9]\d*)(\.\d+)? | ||
- enum: | ||
- Infinity | ||
- -Infinity | ||
- NaN | ||
description: Note the mix of regex validation for normal numbers, and enum validation for special values. | ||
Integer: | ||
type: string | ||
oneOf: | ||
- pattern: -?(0|[0-9]\d*) | ||
- enum: | ||
- Infinity | ||
- -Infinity | ||
- NaN | ||
Boolean: | ||
type: boolean | ||
description: Note the direct usage of a primitive boolean rather than string. Unlike Numbers and Integers, we don't expect unusual values here. |
Oops, something went wrong.