FHIR CI-Build

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

Example ImagingStudy/example (Turtle)

Imaging Integration Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Patient

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

Example of imagingstudy

@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:ImagingStudy ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "example"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">CT Chest.  John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.</div>"
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "urn:dicom:uid"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045" ]
  ] ) ; # 
  fhir:status [ fhir:v "available"] ; # 
  fhir:subject [
     fhir:reference [ fhir:v "Patient/dicom" ]
  ] ; # 
  fhir:started [ fhir:v "2011-01-01T11:01:20+03:00"^^xsd:dateTime] ; # 
  fhir:numberOfSeries [ fhir:v "1"^^xsd:nonNegativeInteger] ; # 
  fhir:numberOfInstances [ fhir:v "1"^^xsd:nonNegativeInteger] ; # 
  fhir:reason ( [
     fhir:reference [
       fhir:reference [ fhir:v "Observation/656" ]
     ]
  ] ) ; # 
  fhir:series ( [
     fhir:uid [ fhir:v "2.16.124.113543.6003.2588828330.45298.17418.2723805630" ] ;
     fhir:number [ fhir:v "3"^^xsd:nonNegativeInteger ] ;
     fhir:modality [
       fhir:coding ( [
         fhir:system [ fhir:v "http://dicom.nema.org/resources/ontology/DCM"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "CT" ]
       ] )
     ] ;
     fhir:description [ fhir:v "CT Surview 180" ] ;
     fhir:numberOfInstances [ fhir:v "1"^^xsd:nonNegativeInteger ] ;
     fhir:bodySite [
       fhir:reference [
         fhir:reference [ fhir:v "BodyStructure/tumor" ]
       ]
     ] ;
     fhir:instance ( [
       fhir:uid [ fhir:v "2.16.124.113543.6003.189642796.63084.16748.2599092903" ] ;
       fhir:sopClass [ fhir:v "urn:oid:1.2.840.10008.5.1.4.1.1.2"^^xsd:anyURI ] ;
       fhir:number [ fhir:v "1"^^xsd:nonNegativeInteger ]
     ] )
  ] )] . # 

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


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.