Dexcom · Schema

DataRangeMoment

DataRangeMoment schema from Dexcom Developer API

Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

Properties

Name Type Description
systemTime object
displayTime object
View JSON Schema on GitHub

JSON Schema

dexcom-api-data-range-moment-schema.json Raw ↑
{
  "$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."
    }
  }
}