This page is part of the US Core (v5.0.1: STU5) based on FHIR R4. This is the current published version in its permanent home (it will always be available at this URL). For a full list of available versions, see the Directory of published versions
@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:Media;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "chest-xray"];
fhir:Resource.meta [
fhir:Element.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-name" ];
fhir:Extension.valueString [ fhir:value "Chest Xray Example" ] ], [
fhir:index 1;
fhir:Extension.url [ fhir:value "http://hl7.org/fhir/StructureDefinition/instance-description" ];
fhir:Extension.valueMarkdown [ fhir:value "This is an example Media xray image that is reference by the *US Core DiagnosticReport Note Profile*." ] ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"chest-xray\" </p></div><p><b>status</b>: completed</p><p><b>type</b>: Image <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://hl7.org/fhir/R4/codesystem-media-type.html\">Media Type</a>#image)</span></p><p><b>modality</b>: Plain chest X-ray (procedure) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#399208008)</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Patient/example</a> \" SHAW\"</p><p><b>created</b>: 2019-02-04 07:43:30+0000</p><p><b>issued</b>: Feb 4, 2019 7:43:30 PM</p></div>"
];
fhir:Media.status [ fhir:value "completed"];
fhir:Media.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/media-type" ];
fhir:Coding.code [ fhir:value "image" ];
fhir:Coding.display [ fhir:value "Image" ] ]
];
fhir:Media.modality [
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:399208008;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "399208008" ];
fhir:Coding.display [ fhir:value "Plain chest X-ray (procedure)" ] ]
];
fhir:Media.subject [
fhir:Reference.reference [ fhir:value "Patient/example" ]
];
fhir:Media.createdDateTime [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime];
fhir:Media.issued [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime];
fhir:Media.content [
fhir:Element.id [ fhir:value "a1" ];
fhir:Attachment.contentType [ fhir:value "image/jpeg" ];
fhir:Attachment.url [ fhir:value "http://example.org/fhir/Binary/A12345" ];
fhir:Attachment.creation [ fhir:value "2019-02-04T19:43:30.000Z"^^xsd:dateTime ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.