Skip to content

Commit

Permalink
Update supported-data-types docs to use date-time (#11743)
Browse files Browse the repository at this point in the history
`date-time` is the right type, with the `-`.
  • Loading branch information
evantahler authored Apr 6, 2022
1 parent d67e32b commit 4839a89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/understanding-airbyte/supported-data-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ This table summarizes the available types. See the [Specific Types](#specific-ty
| -------------------------------------------------------------- | ---------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------- |
| String | `{"type": "string"}` | `"foo bar"` |
| Date | `{"type": "string", "format": "date"}` | `"2021-01-23"` |
| Datetime with timezone | `{"type": "string", "format": "datetime", "airbyte_type": "timestamp_with_timezone"}` | `"2022-11-22T01:23:45+05:00"` |
| Datetime without timezone | `{"type": "string", "format": "datetime", "airbyte_type": "timestamp_without_timezone"}` | `"2022-11-22T01:23:45"` |
| Datetime with timezone | `{"type": "string", "format": "date-time", "airbyte_type": "timestamp_with_timezone"}` | `"2022-11-22T01:23:45+05:00"` |
| Datetime without timezone | `{"type": "string", "format": "date-time", "airbyte_type": "timestamp_without_timezone"}` | `"2022-11-22T01:23:45"` |
| Integer | `{"type": "integer"}` | `42` |
| Big integer (unrepresentable as a 64-bit two's complement int) | `{"type": "string", "airbyte_type": "big_integer"}` | `"123141241234124123141241234124123141241234124123141241234124123141241234124"` |
| Number | `{"type": "number"}` | `1234.56` |
Expand Down

0 comments on commit 4839a89

Please sign in to comment.