{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-schema/dexcom-api-data-range-moment-schema.json", "title": "DataRangeMoment", "description": "DataRangeMoment schema from Dexcom Developer API", "type": "object", "properties": { "systemTime": { "$ref": "#/$defs/DateTime" }, "displayTime": { "$ref": "#/$defs/DateTime" } }, "required": [ "systemTime", "displayTime" ], "$defs": { "DateTime": { "type": "string", "format": "date-time", "description": "ISO 8601 timestamp." } } }