FHIR Release 3 (STU)

This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions

Imagingmanifest-example.ttl

Imaging Integration Work GroupMaturity Level: N/ABallot Status: InformativeCompartments: Device, Patient, Practitioner, RelatedPerson

Raw Turtle, JSON-LD

Example of imagingmanifest

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

<http://hl7.org/fhir/ImagingManifest/example> a fhir:ImagingManifest;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "example"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">A set of images to share accompanying an report document, including one SC image and two CT image</div>"
  ];
  fhir:ImagingManifest.identifier [
     fhir:Identifier.value [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092901" ]
  ];
  fhir:ImagingManifest.patient [
     fhir:link <http://hl7.org/fhir/Patient/dicom>;
     fhir:Reference.reference [ fhir:value "Patient/dicom" ]
  ];
  fhir:ImagingManifest.authoringTime [ fhir:value "2014-11-20T11:01:20-08:00"^^xsd:dateTime];
  fhir:ImagingManifest.author [
     fhir:link <http://hl7.org/fhir/Practitioner/example>;
     fhir:Reference.reference [ fhir:value "Practitioner/example" ]
  ];
  fhir:ImagingManifest.description [ fhir:value "1 SC image (screen snapshot) and 2 CT images to share a chest CT exam"];
  fhir:ImagingManifest.study [
     fhir:index 0;
     fhir:ImagingManifest.study.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16749.2599092904" ];
     fhir:ImagingManifest.study.imagingStudy [
       fhir:link <http://hl7.org/fhir/ImagingStudy/example>;
       fhir:Reference.reference [ fhir:value "ImagingStudy/example" ]
     ];
     fhir:ImagingManifest.study.endpoint [
       fhir:index 0;
       fhir:link <http://hl7.org/fhir/Endpoint/example-iid>;
       fhir:Reference.reference [ fhir:value "Endpoint/example-iid" ]
     ], [
       fhir:index 1;
       fhir:link <http://hl7.org/fhir/Endpoint/example-wadors>;
       fhir:Reference.reference [ fhir:value "Endpoint/example-wadors" ]
     ];
     fhir:ImagingManifest.study.series [
       fhir:index 0;
       fhir:ImagingManifest.study.series.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16750.2599092901" ];
       fhir:ImagingManifest.study.series.endpoint [
         fhir:index 0;
         fhir:link <http://hl7.org/fhir/Endpoint/example-wadors>;
         fhir:Reference.reference [ fhir:value "Endpoint/example-wadors" ]
       ];
       fhir:ImagingManifest.study.series.instance [
         fhir:index 0;
         fhir:ImagingManifest.study.series.instance.sopClass [ fhir:value "urn:oid:1.2.840.10008.5.1.4.1.1.7" ];
         fhir:ImagingManifest.study.series.instance.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092902" ]
       ]
     ], [
       fhir:index 1;
       fhir:ImagingManifest.study.series.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16750.2599092902" ];
       fhir:ImagingManifest.study.series.instance [
         fhir:index 0;
         fhir:ImagingManifest.study.series.instance.sopClass [ fhir:value "urn:oid:1.2.840.10008.5.1.4.1.1.2" ];
         fhir:ImagingManifest.study.series.instance.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092903" ]
       ], [
         fhir:index 1;
         fhir:ImagingManifest.study.series.instance.sopClass [ fhir:value "urn:oid:1.2.840.10008.5.1.4.1.1.2" ];
         fhir:ImagingManifest.study.series.instance.uid [ fhir:value "urn:oid:2.16.124.113543.6003.189642796.63084.16748.2599092904" ]
       ]
     ]
  ] .

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

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

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

<http://hl7.org/fhir/Endpoint/example-iid> a fhir:Endpoint .

<http://hl7.org/fhir/Endpoint/example-wadors> a fhir:Endpoint .

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

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

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


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.