diff --git a/airbyte-integrations/connectors/source-commcare/source_commcare/source.py b/airbyte-integrations/connectors/source-commcare/source_commcare/source.py index e45693ff6e73..f06d7422772b 100644 --- a/airbyte-integrations/connectors/source-commcare/source_commcare/source.py +++ b/airbyte-integrations/connectors/source-commcare/source_commcare/source.py @@ -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]: