FHIR Release 3 (STU)

This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2

8.16 Resource DeviceMetric - Content

Health Care Devices Work GroupMaturity Level: 1 Trial UseCompartments: Device

Describes a measurement, calculation or setting capability of a medical device.

The DeviceMetric resource describes mandatory static properties that characterize a direct or derived, quantitative or qualitative biosignal measurement, setting, or calculation produced by a medical device. The DeviceMetric resource can also be used to describe the non-static but highly relevant properties to the metric such as metric status, metric last calibration time and type, measurement mode, color, reference link to the parent DeviceComponent to where it belongs, and any capabilities that the metric offers (for example: setting the metric label).

Note:

For the initial scope, this DeviceMetric resource is only applicable to describe a single metric node in the containment tree that is produced by the context scanner in any medical device that implements or derives from the ISO/IEEE 11073 standard.

There are two related resources

  • Device - The physical device that this DeviceMetric belongs to.
  • DeviceComponent - The DeviceComponent that this DeviceMetric is part of. This can be a DeviceComponent of any kind like a VirtualMedicalDevice, a MedicalDeviceSystem, or a Channel.

This resource is referenced by Media and Observation

Structure

NameFlagsCard.TypeDescription & Constraintsdoco
.. DeviceMetric ΣDomainResourceMeasurement, calculation or setting capability of a medical device
Elements defined in Ancestors: id, meta, implicitRules, language, text, contained, extension, modifierExtension
... identifier Σ1..1IdentifierUnique identifier of this DeviceMetric
... type Σ1..1CodeableConceptIdentity of metric, for example Heart Rate or PEEP Setting
Device Metric and Component Types (Preferred)
... unit Σ0..1CodeableConceptUnit of Measure for the Metric
Device Metric and Component Types (Preferred)
... source Σ0..1Reference(Device)Describes the link to the source Device
... parent Σ0..1Reference(DeviceComponent)Describes the link to the parent DeviceComponent
... operationalStatus Σ0..1codeon | off | standby | entered-in-error
DeviceMetricOperationalStatus (Required)
... color Σ0..1codeblack | red | green | yellow | blue | magenta | cyan | white
DeviceMetricColor (Required)
... category Σ1..1codemeasurement | setting | calculation | unspecified
DeviceMetricCategory (Required)
... measurementPeriod Σ0..1TimingDescribes the measurement repetition time
... calibration Σ0..*BackboneElementDescribes the calibrations that have been performed or that are required to be performed
.... type Σ0..1codeunspecified | offset | gain | two-point
DeviceMetricCalibrationType (Required)
.... state Σ0..1codenot-calibrated | calibration-required | calibrated | unspecified
DeviceMetricCalibrationState (Required)
.... time Σ0..1instantDescribes the time last calibration has been performed

doco Documentation for this format

UML Diagram (Legend)

DeviceMetric (DomainResource)Describes the unique identification of this metric that has been assigned by the device or gateway software. For example: handle ID. It should be noted that in order to make the identifier unique, the system element of the identifier should be set to the unique identifier of the deviceidentifier : Identifier [1..1]Describes the type of the metric. For example: Heart Rate, PEEP Setting, etctype : CodeableConcept [1..1] Describes the metric type. (Strength=Preferred)Device Metric and Component T...? Describes the unit that an observed value determined for this metric will have. For example: Percent, Seconds, etcunit : CodeableConcept [0..1] Describes the unit of the metric. (Strength=Preferred)Device Metric and Component T...? Describes the link to the Device that this DeviceMetric belongs to and that contains administrative device information such as manufacturer, serial number, etcsource : Reference [0..1] Device Describes the link to the DeviceComponent that this DeviceMetric belongs to and that provide information about the location of this DeviceMetric in the containment structure of the parent Device. An example would be a DeviceComponent that represents a Channel. This reference can be used by a client application to distinguish DeviceMetrics that have the same type, but should be interpreted based on their containment locationparent : Reference [0..1] DeviceComponent Indicates current operational state of the device. For example: On, Off, Standby, etcoperationalStatus : code [0..1] Describes the operational status of the DeviceMetric. (Strength=Required)DeviceMetricOperationalStatus! Describes the color representation for the metric. This is often used to aid clinicians to track and identify parameter types by color. In practice, consider a Patient Monitor that has ECG/HR and Pleth for example; the parameters are displayed in different characteristic colors, such as HR-blue, BP-green, and PR and SpO2- magentacolor : code [0..1] Describes the typical color of representation. (Strength=Required)DeviceMetricColor! Indicates the category of the observation generation process. A DeviceMetric can be for example a setting, measurement, or calculationcategory : code [1..1] Describes the category of the metric. (Strength=Required)DeviceMetricCategory! Describes the measurement repetition time. This is not necessarily the same as the update period. The measurement repetition time can range from milliseconds up to hours. An example for a measurement repetition time in the range of milliseconds is the sampling rate of an ECG. An example for a measurement repetition time in the range of hours is a NIBP that is triggered automatically every hour. The update period may be different than the measurement repetition time, if the device does not update the published observed value with the same frequency as it was measuredmeasurementPeriod : Timing [0..1]CalibrationDescribes the type of the calibration methodtype : code [0..1] Describes the type of a metric calibration. (Strength=Required)DeviceMetricCalibrationType! Describes the state of the calibrationstate : code [0..1] Describes the state of a metric calibration. (Strength=Required)DeviceMetricCalibrationState! Describes the time last calibration has been performedtime : instant [0..1]Describes the calibrations that have been performed or that are required to be performedcalibration[0..*]

XML Template

Turtle Template

@prefix fhir: <http://hl7.org/fhir/> .doco


[ a fhir:DeviceMetric;
  fhir:nodeRole fhir:treeRoot; # if this is the parser root

  # from Resource: .id, .meta, .implicitRules, and .language
  # from DomainResource: .text, .contained, .extension, and .modifierExtension
  fhir:DeviceMetric.identifier [ Identifier ]; # 1..1 Unique identifier of this DeviceMetric
  fhir:DeviceMetric.type [ CodeableConcept ]; # 1..1 Identity of metric, for example Heart Rate or PEEP Setting
  fhir:DeviceMetric.unit [ CodeableConcept ]; # 0..1 Unit of Measure for the Metric
  fhir:DeviceMetric.source [ Reference(Device) ]; # 0..1 Describes the link to the source Device
  fhir:DeviceMetric.parent [ Reference(DeviceComponent) ]; # 0..1 Describes the link to the parent DeviceComponent
  fhir:DeviceMetric.operationalStatus [ code ]; # 0..1 on | off | standby | entered-in-error
  fhir:DeviceMetric.color [ code ]; # 0..1 black | red | green | yellow | blue | magenta | cyan | white
  fhir:DeviceMetric.category [ code ]; # 1..1 measurement | setting | calculation | unspecified
  fhir:DeviceMetric.measurementPeriod [ Timing ]; # 0..1 Describes the measurement repetition time
  fhir:DeviceMetric.calibration [ # 0..* Describes the calibrations that have been performed or that are required to be performed
    fhir:DeviceMetric.calibration.type [ code ]; # 0..1 unspecified | offset | gain | two-point
    fhir:DeviceMetric.calibration.state [ code ]; # 0..1 not-calibrated | calibration-required | calibrated | unspecified
    fhir:DeviceMetric.calibration.time [ instant ]; # 0..1 Describes the time last calibration has been performed
  ], ...;
]

Changes since DSTU2

DeviceMetric
  • No Changes

See the Full Difference for further information

This analysis is available as XML or JSON.

See R2 <--> R3 Conversion Maps (status = 1 test that all execute ok. All tests pass round-trip testing and all r3 resources are valid.).

Structure

NameFlagsCard.TypeDescription & Constraintsdoco
.. DeviceMetric ΣDomainResourceMeasurement, calculation or setting capability of a medical device
Elements defined in Ancestors: id, meta, implicitRules, language, text, contained, extension, modifierExtension
... identifier Σ1..1IdentifierUnique identifier of this DeviceMetric
... type Σ1..1CodeableConceptIdentity of metric, for example Heart Rate or PEEP Setting
Device Metric and Component Types (Preferred)
... unit Σ0..1CodeableConceptUnit of Measure for the Metric
Device Metric and Component Types (Preferred)
... source Σ0..1Reference(Device)Describes the link to the source Device
... parent Σ0..1Reference(DeviceComponent)Describes the link to the parent DeviceComponent
... operationalStatus Σ0..1codeon | off | standby | entered-in-error
DeviceMetricOperationalStatus (Required)
... color Σ0..1codeblack | red | green | yellow | blue | magenta | cyan | white
DeviceMetricColor (Required)
... category Σ1..1codemeasurement | setting | calculation | unspecified
DeviceMetricCategory (Required)
... measurementPeriod Σ0..1TimingDescribes the measurement repetition time
... calibration Σ0..*BackboneElementDescribes the calibrations that have been performed or that are required to be performed
.... type Σ0..1codeunspecified | offset | gain | two-point
DeviceMetricCalibrationType (Required)
.... state Σ0..1codenot-calibrated | calibration-required | calibrated | unspecified
DeviceMetricCalibrationState (Required)
.... time Σ0..1instantDescribes the time last calibration has been performed

doco Documentation for this format

UML Diagram (Legend)

DeviceMetric (DomainResource)Describes the unique identification of this metric that has been assigned by the device or gateway software. For example: handle ID. It should be noted that in order to make the identifier unique, the system element of the identifier should be set to the unique identifier of the deviceidentifier : Identifier [1..1]Describes the type of the metric. For example: Heart Rate, PEEP Setting, etctype : CodeableConcept [1..1] Describes the metric type. (Strength=Preferred)Device Metric and Component T...? Describes the unit that an observed value determined for this metric will have. For example: Percent, Seconds, etcunit : CodeableConcept [0..1] Describes the unit of the metric. (Strength=Preferred)Device Metric and Component T...? Describes the link to the Device that this DeviceMetric belongs to and that contains administrative device information such as manufacturer, serial number, etcsource : Reference [0..1] Device Describes the link to the DeviceComponent that this DeviceMetric belongs to and that provide information about the location of this DeviceMetric in the containment structure of the parent Device. An example would be a DeviceComponent that represents a Channel. This reference can be used by a client application to distinguish DeviceMetrics that have the same type, but should be interpreted based on their containment locationparent : Reference [0..1] DeviceComponent Indicates current operational state of the device. For example: On, Off, Standby, etcoperationalStatus : code [0..1] Describes the operational status of the DeviceMetric. (Strength=Required)DeviceMetricOperationalStatus! Describes the color representation for the metric. This is often used to aid clinicians to track and identify parameter types by color. In practice, consider a Patient Monitor that has ECG/HR and Pleth for example; the parameters are displayed in different characteristic colors, such as HR-blue, BP-green, and PR and SpO2- magentacolor : code [0..1] Describes the typical color of representation. (Strength=Required)DeviceMetricColor! Indicates the category of the observation generation process. A DeviceMetric can be for example a setting, measurement, or calculationcategory : code [1..1] Describes the category of the metric. (Strength=Required)DeviceMetricCategory! Describes the measurement repetition time. This is not necessarily the same as the update period. The measurement repetition time can range from milliseconds up to hours. An example for a measurement repetition time in the range of milliseconds is the sampling rate of an ECG. An example for a measurement repetition time in the range of hours is a NIBP that is triggered automatically every hour. The update period may be different than the measurement repetition time, if the device does not update the published observed value with the same frequency as it was measuredmeasurementPeriod : Timing [0..1]CalibrationDescribes the type of the calibration methodtype : code [0..1] Describes the type of a metric calibration. (Strength=Required)DeviceMetricCalibrationType! Describes the state of the calibrationstate : code [0..1] Describes the state of a metric calibration. (Strength=Required)DeviceMetricCalibrationState! Describes the time last calibration has been performedtime : instant [0..1]Describes the calibrations that have been performed or that are required to be performedcalibration[0..*]

XML Template

Turtle Template

@prefix fhir: <http://hl7.org/fhir/> .doco


[ a fhir:DeviceMetric;
  fhir:nodeRole fhir:treeRoot; # if this is the parser root

  # from Resource: .id, .meta, .implicitRules, and .language
  # from DomainResource: .text, .contained, .extension, and .modifierExtension
  fhir:DeviceMetric.identifier [ Identifier ]; # 1..1 Unique identifier of this DeviceMetric
  fhir:DeviceMetric.type [ CodeableConcept ]; # 1..1 Identity of metric, for example Heart Rate or PEEP Setting
  fhir:DeviceMetric.unit [ CodeableConcept ]; # 0..1 Unit of Measure for the Metric
  fhir:DeviceMetric.source [ Reference(Device) ]; # 0..1 Describes the link to the source Device
  fhir:DeviceMetric.parent [ Reference(DeviceComponent) ]; # 0..1 Describes the link to the parent DeviceComponent
  fhir:DeviceMetric.operationalStatus [ code ]; # 0..1 on | off | standby | entered-in-error
  fhir:DeviceMetric.color [ code ]; # 0..1 black | red | green | yellow | blue | magenta | cyan | white
  fhir:DeviceMetric.category [ code ]; # 1..1 measurement | setting | calculation | unspecified
  fhir:DeviceMetric.measurementPeriod [ Timing ]; # 0..1 Describes the measurement repetition time
  fhir:DeviceMetric.calibration [ # 0..* Describes the calibrations that have been performed or that are required to be performed
    fhir:DeviceMetric.calibration.type [ code ]; # 0..1 unspecified | offset | gain | two-point
    fhir:DeviceMetric.calibration.state [ code ]; # 0..1 not-calibrated | calibration-required | calibrated | unspecified
    fhir:DeviceMetric.calibration.time [ instant ]; # 0..1 Describes the time last calibration has been performed
  ], ...;
]

Changes since DSTU2

DeviceMetric
  • No Changes

See the Full Difference for further information

This analysis is available as XML or JSON.

See R2 <--> R3 Conversion Maps (status = 1 test that all execute ok. All tests pass round-trip testing and all r3 resources are valid.).

 

Alternate definitions: Master Definition (XML, JSON), XML Schema/Schematron (for ) + JSON Schema, ShEx (for Turtle)

PathDefinitionTypeReference
DeviceMetric.type Describes the metric type.PreferredDevice Metric and Component Types
DeviceMetric.unit Describes the unit of the metric.PreferredDevice Metric and Component Types
DeviceMetric.operationalStatus Describes the operational status of the DeviceMetric.RequiredDeviceMetricOperationalStatus
DeviceMetric.color Describes the typical color of representation.RequiredDeviceMetricColor
DeviceMetric.category Describes the category of the metric.RequiredDeviceMetricCategory
DeviceMetric.calibration.type Describes the type of a metric calibration.RequiredDeviceMetricCalibrationType
DeviceMetric.calibration.state Describes the state of a metric calibration.RequiredDeviceMetricCalibrationState

Search parameters for this resource. The common parameters also apply. See Searching for more information about searching in REST, messaging, and services.

NameTypeDescriptionExpressionIn Common
categorytokenThe category of the metricDeviceMetric.category
identifiertokenThe identifier of the metricDeviceMetric.identifier
parentreferenceThe parent DeviceMetric resourceDeviceMetric.parent
(DeviceComponent)
sourcereferenceThe device resourceDeviceMetric.source
(Device)
typetokenThe component typeDeviceMetric.type