Dexcom · JSON Structure

Dexcom Api Alert Record Structure

AlertRecord schema from Dexcom Developer API

Type: object Properties: 8
Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

AlertRecord is a JSON Structure definition published by Dexcom, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

recordId systemTime displayTime alertName alertState displayDevice transmitterGeneration transmitterId

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-alert-record-structure.json",
  "name": "AlertRecord",
  "description": "AlertRecord schema from Dexcom Developer API",
  "type": "object",
  "properties": {
    "recordId": {
      "type": "string"
    },
    "systemTime": {
      "$ref": "#/definitions/DateTime"
    },
    "displayTime": {
      "$ref": "#/definitions/DateTime"
    },
    "alertName": {
      "$ref": "#/definitions/AlertName"
    },
    "alertState": {
      "$ref": "#/definitions/AlertState"
    },
    "displayDevice": {
      "type": "string"
    },
    "transmitterGeneration": {
      "$ref": "#/definitions/TransmitterGeneration"
    },
    "transmitterId": {
      "type": "string",
      "nullable": true
    }
  },
  "definitions": {
    "AlertName": {
      "name": "AlertName",
      "type": "string",
      "enum": [
        "unknown",
        "high",
        "low",
        "rise",
        "fall",
        "outOfRange",
        "urgentLow",
        "urgentLowSoon",
        "noReadings",
        "fixedLow"
      ]
    },
    "AlertState": {
      "name": "AlertState",
      "type": "string",
      "enum": [
        "unknown",
        "inactive",
        "activeSnoozed",
        "activeAlarming"
      ]
    },
    "DateTime": {
      "name": "DateTime",
      "type": "datetime",
      "description": "ISO 8601 timestamp."
    },
    "TransmitterGeneration": {
      "name": "TransmitterGeneration",
      "type": "string",
      "enum": [
        "unknown",
        "g4",
        "g5",
        "g6",
        "g6+",
        "dexcomPro",
        "g7"
      ]
    }
  }
}