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/implant-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)

Implant Device Assigned to Patient

@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/implant-association> a fhir:DeviceAssociation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "implant-association"] ; # 
  fhir:contained ( [
     a fhir:Patient ;
     fhir:id [ fhir:v "example-patient" ] ;
     fhir:name ( [
       fhir:family [ fhir:v "Doe" ] ;
       fhir:given ( [ fhir:v "John" ] )
     ] )
  ] [
     a fhir:Device ;
     fhir:id [ fhir:v "implant-device" ] ;
     fhir:status [ fhir:v "active" ] ;
     fhir:name ( [
       fhir:value [ fhir:v "ICD Model X" ] ;
       fhir:type [
         fhir:coding ( [
           fhir:code [ fhir:v "model-name" ]
         ] )
       ]
     ] ) ;
     fhir:type ( [
       fhir:coding ( [
         fhir:system [ fhir:v "urn:iso:std:iso:11073:10101"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "753666" ] ;
         fhir:display [ fhir:v "MDC_IDC_ENUM_DEV_TYPE_ICD" ]
       ] )
     ] )
  ] [
     a fhir:BodyStructure ;
     fhir:id [ fhir:v "heart-structure" ] ;
     fhir:includedStructure ( [
       fhir:structure [
         fhir:coding ( [
           a sct:80891009 ;
           fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
           fhir:code [ fhir:v "80891009" ] ;
           fhir:display [ fhir:v "Heart structure" ]
         ] )
       ]
     ] ) ;
     fhir:description [ fhir:v "Anatomical site for ICD implantation" ] ;
     fhir:patient [
       fhir:reference [ fhir:v "#example-patient" ]
     ]
  ] ) ; # 
  fhir:device [
     fhir:reference [ fhir:v "#implant-device" ]
  ] ; # 
  fhir:status [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/deviceassociation-status"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "implanted" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "#example-patient" ]
  ] ; # 
  fhir:bodyStructure [
     fhir:reference [ fhir:v "#heart-structure" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2022-01-01"^^xsd:date ]
  ] . # 

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


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.