QI-Core Implementation Guide
4.1.0 - release

This page is part of the Quality Improvement Core Framework (v4.1.0: STU 4) based on FHIR R4. The current version which supercedes this version is 4.1.1. For a full list of available versions, 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 -------------------------------------------------------------------

 a fhir:ImagingStudy;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-imagingstudy";
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-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: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" ]     ]
  ].

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

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.