1
0
mirror of synced 2026-01-06 15:03:36 -05:00
Files
airbyte/airbyte-integrations/connectors/source-firebolt/integration_tests/catalog.json
Evan Tahler 3679dcd9d0 🐛 Fix date-time for airbyte types (#25965)
* Fix airbyte types

* update firebolt test fixture

* Bump changelog PR ids

* update metadata files

* fix firebolt test

* fix file-source for date-time overload

* fix source-file changelog

* it's a date, not date-time

* another date

* auto-bump connector version

* manually bump definitions

---------

Co-authored-by: Octavia Squidington III <octavia-squidington-iii@users.noreply.github.com>
2023-05-12 01:15:30 +00:00

36 lines
817 B
JSON

{
"streams": [
{
"name": "airbyte_acceptance_table",
"supported_sync_modes": ["full_refresh", "incremental"],
"source_defined_cursor": false,
"json_schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"column1": {
"type": "string"
},
"column2": {
"type": "number"
},
"column3": {
"type": "string",
"format": "date-time",
"airbyte_type": "timestamp_without_timezone"
},
"column4": {
"type": "number"
},
"column5": {
"type": "array",
"items": {
"type": "integer"
}
}
}
}
}
]
}