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 . Page versions: R4B R4 R3
FHIR Infrastructure Work Group | Maturity Level: N/A | Ballot Status: Informative | Compartments: Device, Patient, Practitioner |
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.type [ fhir:value "photo"]; fhir:Media.subtype [ 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.context [ fhir:link <http://hl7.org/fhir/Encounter/example>; fhir:Reference.reference [ fhir:value "Encounter/example" ] ]; fhir:Media.occurrenceDateTime [ fhir:value "2016-03-15"^^xsd:date]; fhir:Media.bodySite [ fhir:CodeableConcept.coding [ fhir:index 0; 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://hl7.org/fhir/STU3/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.