Skip to content

Commit

Permalink
indexed_on is a timestamp_with_timezone, this is the default we are…
Browse files Browse the repository at this point in the history
… only making it explicit
  • Loading branch information
Rohit Chatterjee committed May 28, 2024
1 parent 0fd9431 commit 3b01d06
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,11 @@ def base_schema(self):
return {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {"id": {"type": "string"}, "indexed_on": {"type": "string", "format": "date-time"}, "data": {"type": "object"}},
"properties": {
"id": {"type": "string"},
"indexed_on": {"type": "string", "format": "date-time", "airbyte_type": "timestamp_with_timezone"},
"data": {"type": "object"},
},
}

def streams(self, config: Mapping[str, Any]) -> List[Stream]:
Expand Down

0 comments on commit 3b01d06

Please sign in to comment.