FHIR CI-Build

This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions

Example DeviceMetric/example (Turtle)

Health Care Devices Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: No defined compartments

Raw Turtle (+ also see Turtle/RDF Format Specification)

General DeviceMetric example

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

[a fhir:DeviceMetric ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://goodcare.org/devicemetric/id"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "345675" ]
  ] ) ; # 
  fhir:type [
     fhir:coding ( [
       fhir:system [ fhir:v "urn:iso:std:iso:11073:10101"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "150456" ] ;
       fhir:display [ fhir:v "MDC_PULS_OXIM_SAT_O2" ]
     ] )
  ] ; # 
  fhir:unit [
     fhir:coding ( [
       fhir:system [ fhir:v "urn:iso:std:iso:11073:10101"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "262688" ] ;
       fhir:display [ fhir:v "MDC_DIM_PERCENT" ]
     ] )
  ] ; # 
  fhir:device [
     fhir:reference [ fhir:v "Device/dev1" ]
  ] ; # 
  fhir:operationalStatus [ fhir:v "on"] ; # 
  fhir:color [ fhir:v "blue"] ; # 
  fhir:category [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/metric-category"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "measurement" ] ;
       fhir:display [ fhir:v "Measurement" ]
     ] )
  ] ; # 
  fhir:measurementFrequency [
     fhir:value [ fhir:v "1"^^xsd:decimal ] ;
     fhir:unit [ fhir:v "Hertz" ] ;
     fhir:system [ fhir:v "http://unitsofmeasure.org"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "Hz" ]
  ] ; # 
  fhir:calibration ( [
     fhir:type [ ] ;
     fhir:state [ fhir:v "calibrated" ] ;
     fhir:time [ fhir:v "2016-12-28T09:03:04-05:00"^^xsd:dateTime ]
  ] )] . # 

# -------------------------------------------------------------------------------------


Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.