@prefix fhir: . @prefix owl: . @prefix rdfs: . @prefix sct: . @prefix xsd: . # - resource ------------------------------------------------------------------- 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 "
Xray of left hand for Patient Henry Levin (MRN 12345) 2016-03-15
" ]; 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 ; fhir:Reference.reference [ fhir:value "Patient/example" ] ]; fhir:Media.encounter [ fhir:link ; 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 ] ] . a fhir:Patient . a fhir:Encounter . # - ontology header ------------------------------------------------------------ a owl:Ontology; owl:imports fhir:fhir.ttl; owl:versionIRI . # -------------------------------------------------------------------------------------