MII-Initiative

MII - Kerndatensatz Intensivmedizin - ImplementationGuide - EN

Set and measured parameters (DeviceMetric)

Canonical: https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/StructureDefinition/devicemetric-eingestellte-gemessene-parameter-beatmung

Recommendation: We can distinguish between two cases for measured and set values (see also the description module page):

  1. The device that collected the measured value/for which a value was set is known and should be modeled.
  2. The device is not known and cannot be modelled and the device is known and cannot/should not be modelled.

The DeviceMetric carries the information as to whether the value is measured or set, the information as to which device was used for this is carried by a device resource, which is referenced from the DeviceMetric. We would like to make the following suggestions for the above two points:

  1. DeviceMetric and Device for such a measured value belong together. For a group of values that share a common measurement method and a common measurement device, a common pair of DeviceMetric and Device can be created, which is referenced from Observation.device.
  2. We suggest initially creating two "dummy resources". One DeviceMetric for measured values and one for set values. These DeviceMetrics can then be statically referenced in all Observation.device. This serves to carry the minimum necessary information as to whether a value is measured or set. This procedure can be further refined if necessary, for example by creating a separate DeviceMetric (measured/set once) for each device type (for which a corresponding static device is then referenced under DeviceMetric.device).

Differential

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
identifierΣ0..*Identifier
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemS Σ1..1uriPattern
versionΣ0..1string
codeS Σ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
unitΣ0..1CodeableConceptBinding
sourceS Σ I0..1MII-Reference(SD_MII_ICU_Icu_Device)
parentΣ I0..1Reference(Device)
operationalStatusΣ0..1codeBinding
colorΣ0..1codeBinding
categoryS Σ1..1codeBinding
measurementPeriodΣ0..1Timing
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
typeΣ0..1codeBinding
stateΣ0..1codeBinding
timeΣ0..1instant

FHIR Element Erklärung
DeviceMetric.type
Type of procedure (see Procedure.category) in which a value was collected.
DeviceMetric.source If available, link to the device.
DeviceMetric.category Whether it is a set or measured (or otherwise collected) value.

FHIR Element Logischer Datensatz
DeviceMetric.type Intensivmedizin.Beatmungswerte
DeviceMetric.source Intensivmedizin.Messmethode.Geraet
DeviceMetric.category Nötig für die Zuordnung eines Wertes (Observation) zu entweder
Intensivmedizin.Beatmungswerte.ParameterGemessen
oder
Intensivmedizin.Beatmungswerte.ParameterEingestellt

Snapshot

idΣ0..1string
metaΣ0..1Meta
implicitRulesΣ ?!0..1uri
language0..1codeBinding
text0..1Narrative
contained0..*Resource
extensionI0..*Extension
modifierExtension?! I0..*Extension
identifierΣ0..*Identifier
id0..1string
extensionI0..*Extension
id0..1string
extensionI0..*Extension
systemS Σ1..1uriPattern
versionΣ0..1string
codeS Σ1..1code
displayΣ0..1string
userSelectedΣ0..1boolean
textΣ0..1string
unitΣ0..1CodeableConceptBinding
sourceS Σ I0..1MII-Reference(SD_MII_ICU_Icu_Device)
parentΣ I0..1Reference(Device)
operationalStatusΣ0..1codeBinding
colorΣ0..1codeBinding
categoryS Σ1..1codeBinding
measurementPeriodΣ0..1Timing
id0..1string
extensionI0..*Extension
modifierExtensionΣ ?! I0..*Extension
typeΣ0..1codeBinding
stateΣ0..1codeBinding
timeΣ0..1instant

Beispiel

Eingestellt

{
    "resourceType": "DeviceMetric",
    "id": "exa-mii-icu-vent-eingestellte-parameter-beatmung",
    "meta": {
        "profile":  [
            "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/StructureDefinition/devicemetric-eingestellte-gemessene-parameter-beatmung"
        ]
    },
    "type": {
        "coding":  [
            {
                "code": "40617009",
                "system": "http://snomed.info/sct",
                "display": "Artificial respiration (procedure)"
            }
        ]
    },
    "category": "setting"
}

Gemessen

{
    "resourceType": "DeviceMetric",
    "id": "exa-mii-icu-vent-gemessene-parameter-beatmung",
    "meta": {
        "profile":  [
            "https://www.medizininformatik-initiative.de/fhir/ext/modul-icu/StructureDefinition/devicemetric-eingestellte-gemessene-parameter-beatmung"
        ]
    },
    "type": {
        "coding":  [
            {
                "code": "40617009",
                "system": "http://snomed.info/sct",
                "display": "Artificial respiration (procedure)"
            }
        ]
    },
    "category": "measurement"
}