* 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>
36 lines
817 B
JSON
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|