FHIR CI-Build

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

Example BodyStructure/dicom-includedStructure (Turtle)

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

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

This example demonstrates a DICOM-derived BodyStructure representation of the Left Wrist, with laterality and SNOMED coding for anatomical structure.

@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/BodyStructure/dicom-includedStructure> a fhir:BodyStructure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "dicom-includedStructure"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p>DICOM-derived BodyStructure: Left Wrist</p>\n    </div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:includedStructure ( [
     fhir:structure [
       fhir:coding ( [
         a sct:74670003 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "74670003" ] ;
         fhir:display [ fhir:v "Wrist joint structure" ]
       ] )
     ] ;
     fhir:laterality [
       fhir:coding ( [
         a sct:7771000 ;
         fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "7771000" ] ;
         fhir:display [ fhir:v "Left" ]
       ] )
     ]
  ] ) ; # 
  fhir:patient [
     fhir:link <http://hl7.org/fhir/Patient/dicom> ;
     fhir:reference [ fhir:v "Patient/dicom" ]
  ] . # 

<http://hl7.org/fhir/Patient/dicom> a fhir:Patient .

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


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.