Dexcom · JSON Structure

Dexcom Api Alert Setting Structure

AlertSetting schema from Dexcom Developer API

Type: object Properties: 5
Continuous Glucose MonitoringDiabetesDigital HealthGlucoseHealthcareMedical DevicesWearables

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

Properties

alertName value unit snooze enabled

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-setting-structure.json",
  "name": "AlertSetting",
  "description": "AlertSetting schema from Dexcom Developer API",
  "type": "object",
  "properties": {
    "alertName": {
      "$ref": "#/definitions/AlertName"
    },
    "value": {
      "type": "double"
    },
    "unit": {
      "$ref": "#/definitions/GlucoseUnit"
    },
    "snooze": {
      "type": "int32",
      "description": "Snooze interval in minutes."
    },
    "enabled": {
      "type": "boolean"
    }
  },
  "definitions": {
    "AlertName": {
      "name": "AlertName",
      "type": "string",
      "enum": [
        "unknown",
        "high",
        "low",
        "rise",
        "fall",
        "outOfRange",
        "urgentLow",
        "urgentLowSoon",
        "noReadings",
        "fixedLow"
      ]
    },
    "GlucoseUnit": {
      "name": "GlucoseUnit",
      "type": "string",
      "enum": [
        "unknown",
        "mg/dL",
        "mmol/L"
      ]
    }
  }
}