2026 US Quality Core Implementation Guide
0.5.0 - release United States of America flag

2026 US Quality Core Implementation Guide - Local Development build (v0.5.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: ImagingStudy example - TTL Representation

Raw ttl | Download


@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 -------------------------------------------------------------------

<http://hl7.org/fhir/ImagingStudy/example> a fhir:ImagingStudy ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "example"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.org/guides/onc/us-quality-core/StructureDefinition/us-quality-core-imagingstudy" ;
       fhir:index 0 ;
       fhir:link <http://fhir.org/guides/onc/us-quality-core/StructureDefinition/us-quality-core-imagingstudy>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n      <p><strong>CT Chest. John Smith (MRN: 09236). Accession: W12342398. Performed: 2011-01-01. 3 series, 12 images.</strong></p>\n      <p>\n        <strong>uid</strong>: urn:oid:2.16.124.113543.6003.1154777499.30246.19789.3503430045\n      </p>\n      <p>\n        <strong>patient</strong>:\n        <a href=\"Patient-example.html\">Patient/example</a>\n      </p>\n      <p>\n        <strong>started</strong>: 01/01/2011\n      </p>\n      <p>\n        <strong>numberOfSeries</strong>: 1\n      </p>\n      <p>\n        <strong>numberOfInstances</strong>: 1\n      </p>\n      <blockquote>\n        <p><strong>series</strong></p>\n        <p>\n          <strong>uid</strong>: urn:oid:2.16.124.113543.6003.2588828330.45298.17418.2723805630\n        </p>\n        <p>\n          <strong>number</strong>: 3\n        </p>\n        <p>\n          <strong>modality</strong>: CT\n        </p>\n        <p>\n          <strong>description</strong>: CT Surview 180\n        </p>\n        <p>\n          <strong>numberOfInstances</strong>: 1\n        </p>\n        <p>\n          <strong>bodySite</strong>: { SNOMED CT code '67734004' = 'Upper Trunk Structure' })\n        </p>\n        <blockquote>\n          <p><strong>instance</strong></p>\n          <p>\n            <strong>uid</strong>: urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092903\n          </p>\n          <p>\n            <strong>number</strong>: 1\n          </p>\n          <p>\n            <strong>sopClass</strong>: urn:oid:1.2.840.10008.5.1.4.1.1.2\n          </p>\n        </blockquote>\n      </blockquote>\n    </div>"
  ] ;
  fhir:ImagingStudy.status [ fhir:value "available"] ;
  fhir:ImagingStudy.subject [
     fhir:link <http://hl7.org/fhir/Patient/example> ;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ] ;
  fhir:ImagingStudy.started [ fhir:value "2011-01-01T11:01:20+03:00"^^xsd:dateTime] ;
  fhir:ImagingStudy.numberOfSeries [ fhir:value "1"^^xsd:nonNegativeInteger] ;
  fhir:ImagingStudy.numberOfInstances [ fhir:value "1"^^xsd:nonNegativeInteger] ;
  fhir:ImagingStudy.series [
     fhir:index 0 ;
     fhir:ImagingStudy.series.uid [ fhir:value "2.16.124.113543.6003.2588828330.45298.17418.2723805630" ] ;
     fhir:ImagingStudy.series.number [ fhir:value "3"^^xsd:nonNegativeInteger ] ;
     fhir:ImagingStudy.series.modality [
       fhir:Coding.system [ fhir:value "http://dicom.nema.org/resources/ontology/DCM" ] ;
       fhir:Coding.code [ fhir:value "CT" ]
     ] ;
     fhir:ImagingStudy.series.description [ fhir:value "CT Surview 180" ] ;
     fhir:ImagingStudy.series.numberOfInstances [ fhir:value "1"^^xsd:nonNegativeInteger ] ;
     fhir:ImagingStudy.series.bodySite [
       a sct:67734004 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "67734004" ] ;
       fhir:Coding.display [ fhir:value "Upper Trunk Structure" ]
     ] ;
     fhir:ImagingStudy.series.performer [
       fhir:index 0 ;
       fhir:ImagingStudy.series.performer.function [
         fhir:CodeableConcept.coding [
           fhir:index 0 ;
           fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ParticipationType" ] ;
           fhir:Coding.code [ fhir:value "PRF" ] ;
           fhir:Coding.display [ fhir:value "performer" ]
         ]
       ] ;
       fhir:ImagingStudy.series.performer.actor [
         fhir:link <http://hl7.org/fhir/Practitioner/example> ;
         fhir:Reference.reference [ fhir:value "Practitioner/example" ]
       ]
     ]
  ] .

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

<http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/ImagingStudy/example.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/ImagingStudy/example.ttl> .