Dexcom · JSON Structure

Dexcom Api Data Range Moment Structure

DataRangeMoment schema from Dexcom Developer API

Type: object Properties: 2 Required: 2
Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

DataRangeMoment is a JSON Structure definition published by Dexcom, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

systemTime displayTime

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dexcom/refs/heads/main/json-structure/dexcom-api-data-range-moment-structure.json",
  "name": "DataRangeMoment",
  "description": "DataRangeMoment schema from Dexcom Developer API",
  "type": "object",
  "properties": {
    "systemTime": {
      "$ref": "#/definitions/DateTime"
    },
    "displayTime": {
      "$ref": "#/definitions/DateTime"
    }
  },
  "required": [
    "systemTime",
    "displayTime"
  ],
  "definitions": {
    "DateTime": {
      "name": "DateTime",
      "type": "datetime",
      "description": "ISO 8601 timestamp."
    }
  }
}