Release 4

Media-example-xray.ttl

Orders and Observations Work GroupMaturity Level: N/AStandards Status: InformativeCompartments: Device, Encounter, Patient, Practitioner

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

Example hand x-ray

@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/Media/xray> a fhir:Media;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "xray"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Xray of left hand for Patient Henry Levin (MRN 12345) 2016-03-15</div>"
  ];
  fhir:Media.basedOn [
     fhir:index 0;
     fhir:Reference.identifier [
       fhir:Identifier.system [ fhir:value "http://someclinic.org/fhir/NamingSystem/imaging-orders" ];
       fhir:Identifier.value [ fhir:value "111222" ];
       fhir:Identifier.assigner [
         fhir:Reference.display [ fhir:value "XYZ Medical Clinic" ]
       ]
     ]
  ];
  fhir:Media.status [ fhir:value "completed"];
  fhir:Media.modality [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:39714003;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "39714003" ];
       fhir:Coding.display [ fhir:value "Skeletal X-ray of wrist and hand" ]
     ]
  ];
  fhir:Media.subject [
     fhir:link <http://hl7.org/fhir/Patient/example>;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ];
  fhir:Media.encounter [
     fhir:link <http://hl7.org/fhir/Encounter/example>;
     fhir:Reference.reference [ fhir:value "Encounter/example" ]
  ];
  fhir:Media.createdDateTime [ fhir:value "2016-03-15"^^xsd:date];
  fhir:Media.bodySite [
     fhir:CodeableConcept.coding [
       fhir:index 0;
       a sct:85151006;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
       fhir:Coding.code [ fhir:value "85151006" ];
       fhir:Coding.display [ fhir:value "Structure of left hand (body structure)" ]
     ]
  ];
  fhir:Media.height [ fhir:value "432"^^xsd:positiveInteger];
  fhir:Media.width [ fhir:value "640"^^xsd:positiveInteger];
  fhir:Media.content [
     fhir:Element.id [ fhir:value "a1" ];
     fhir:Attachment.contentType [ fhir:value "image/jpeg" ];
     fhir:Attachment.url [ fhir:value "http://someimagingcenter.org/fhir/Binary/A12345" ];
     fhir:Attachment.creation [ fhir:value "2016-03-15"^^xsd:date ]
  ] .

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

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

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

<http://hl7.org/fhir/Media/xray.ttl> a owl:Ontology;
  owl:imports fhir:fhir.ttl;
  owl:versionIRI <http://build.fhir.org/Media/xray.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.