Release 5 R6 Ballot (2nd Draft)

This page is part of the FHIR Specification (v5.0.0: R5 - STU v6.0.0-ballot2: Release 6 Ballot (2nd Draft) (see Ballot Notes ). This is the The current published version in it's permanent home (it will always be available at this URL). is 5.0.0 . For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3

Example ImagingStudy/example (Turtle)

Imaging Integration Work Group Maturity Level : N/A Standards Status : Informative Compartments : 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 sct: <http://snomed.info/id/> .

@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

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

#   This example is used with detectedissue-example-dup, so don't make changes that would cause it to no longer be a duplicate  


[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:concept [
         fhir:coding ( [
           a sct:67734004 ;
           fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ; #   Added body site to support duplicate checking example  
           fhir:code [ fhir:v "67734004" ] ;
           fhir:display [ fhir:v "Upper Trunk Structure" ]
         ] )

       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:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
         fhir:code [ fhir:v "urn:oid:1.2.840.10008.5.1.4.1.1.2" ]
       ] ;

       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.