FHIR CI-Build

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

Example DeviceAssociation/lab-device-association (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Group, Patient, Practitioner, RelatedPerson

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

Lab Device Calibration by Repair Staff

@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/DeviceAssociation/lab-device-association> a fhir:DeviceAssociation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "lab-device-association"] ; # 
  fhir:contained ( [
     a fhir:Practitioner ;
     fhir:id [ fhir:v "repair-tech" ]
  ] [
     a fhir:Device ;
     fhir:id [ fhir:v "lab-analyzer" ] ;
     fhir:status [ fhir:v "active" ] ;
     fhir:name ( [
       fhir:value [ fhir:v "Beckman AU5800" ] ;
       fhir:type [
         fhir:coding ( [
           fhir:code [ fhir:v "model-name" ]
         ] )
       ]
     ] ) ;
     fhir:type ( [
       fhir:coding ( [
         a sct:11987000 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "11987000" ] ;
         fhir:display [ fhir:v "Clinical chemistry analyzer" ]
       ] )
     ] )
  ] ) ; # 
  fhir:device [
     fhir:reference [ fhir:v "#lab-analyzer" ]
  ] ; # 
  fhir:status [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/deviceassociation-status"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "attached" ]
     ] )
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2025-07-10T10:00:00Z"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2025-07-10T12:00:00Z"^^xsd:dateTime ]
  ] ; # 
  fhir:operation ( [
     fhir:status [
       fhir:coding ( [
         fhir:code [ fhir:v "on" ]
       ] )
     ] ;
     fhir:operator ( [
       fhir:reference [ fhir:v "#repair-tech" ]
     ] ) ;
     fhir:period [
       fhir:start [ fhir:v "2025-07-10T10:00:00Z"^^xsd:dateTime ] ;
       fhir:end [ fhir:v "2025-07-10T12:00:00Z"^^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.