Implementation Guide
Health Device Data Transfer
Version 0.1.0 - ballot

Specification of health data transfer from devices to DiGA (§ 374a SGB V)

: HDDT Glucometer DeviceDefinition Example - JSON Representation

Raw json | Download

{
  "resourceType" : "DeviceDefinition",
  "id" : "example-glucometer-def",
  "identifier" : [
    {
      "system" : "https://hilfsmittelverzeichnis.de",
      "value" : "12.34.56.7890"
    }
  ],
  "manufacturerString" : "Glukko Inc.",
  "deviceName" : [
    {
      "name" : "GlucoCheck Plus mg/dL",
      "type" : "user-friendly-name"
    }
  ],
  "type" : {
    "coding" : [
      {
        "system" : "http://snomed.info/sct",
        "code" : "337414009",
        "display" : "Blood glucose meter (physical object)"
      }
    ]
  },
  "capability" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://loinc.org",
            "code" : "2339-0",
            "display" : "Glucose [Mass/volume] in Blood"
          }
        ]
      }
    }
  ],
  "property" : [
    {
      "type" : {
        "text" : "Supported unit"
      },
      "valueCode" : [
        {
          "coding" : [
            {
              "system" : "http://unitsofmeasure.org",
              "code" : "mg/dL",
              "display" : "mg/dL"
            }
          ]
        }
      ]
    },
    {
      "type" : {
        "text" : "Reference range low"
      },
      "valueQuantity" : [
        {
          "value" : 70,
          "unit" : "mg/dl",
          "system" : "http://unitsofmeasure.org"
        }
      ]
    },
    {
      "type" : {
        "text" : "Reference range high"
      },
      "valueQuantity" : [
        {
          "value" : 180,
          "unit" : "mg/dl",
          "system" : "http://unitsofmeasure.org"
        }
      ]
    }
  ]
}