Publication Build: This will be filled in by the publication tooling
@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 -------------------------------------------------------------------
a fhir:DeviceRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "deviceRequest0001"];
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 \"deviceRequest0001\" </p></div><p><b>status</b>: active</p><p><b>intent</b>: original-order</p><p><b>code</b>: Stationary Compressed Gaseous Oxygen System, Rental <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (HCPCSReleaseCodeSets#E0424)</span></p><p><b>subject</b>: <a href=\"Patient-example1.html\">Patient/example1</a></p><p><b>occurrence</b>: 2022-01-08 09:33:27+0700</p><p><b>requester</b>: <a href=\"Practitioner-example2.html\">Practitioner/example2: Dr. Jane Doe</a> \" DOE\"</p></div>"
];
fhir:DeviceRequest.status [ fhir:value "active"];
fhir:DeviceRequest.intent [ fhir:value "original-order"];
fhir:DeviceRequest.codeCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://www.cms.gov/Medicare/Coding/HCPCSReleaseCodeSets" ];
fhir:Coding.code [ fhir:value "E0424" ];
fhir:Coding.display [ fhir:value "Stationary Compressed Gaseous Oxygen System, Rental" ] ]
];
fhir:DeviceRequest.subject [
fhir:Reference.reference [ fhir:value "Patient/example1" ]
];
fhir:DeviceRequest.occurrenceDateTime [ fhir:value "2022-01-08T09:33:27+07:00"^^xsd:dateTime];
fhir:DeviceRequest.requester [
fhir:Reference.reference [ fhir:value "Practitioner/example2" ];
fhir:Reference.display [ fhir:value "Dr. Jane Doe" ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.