This page is part of the FHIR Specification (v5.0.0-snapshot1: Release 5 Snapshot #1). 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: R5 R4B R4 R3
| Orders and Observations Work Group | Maturity Level: N/A | Standards Status: Informative | Compartments: Device, Encounter, Patient, Practitioner |
Raw Turtle (+ also see Turtle/RDF Format Specification)
Insulin Pump request
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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 -------------------------------------------------------------------
<http://hl7.org/fhir/DeviceRequest/insulinpump> a fhir:DeviceRequest;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "insulinpump"];
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><p>Resource "insulinpump" </p></div><p><b>identifier</b>: id: ip_request1.1</p><p><b>instantiatesCanonical</b>: <a>http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set</a></p><p><b>basedOn</b>: <span>: Homecare - DM follow-up</span></p><p><b>priorRequest</b>: <span>: CGM ambulatory</span></p><p><b>groupIdentifier</b>: id: ip_request1</p><p><b>status</b>: active</p><p><b>intent</b>: instance-order</p><p><b>priority</b>: routine</p><p><b>subject</b>: <a>Patient/dicom</a> " MINT_TEST"</p><p><b>encounter</b>: <span>: Encounter 1</span></p><p><b>occurrence</b>: 2013-05-08T09:33:27+07:00</p><p><b>authoredOn</b>: 2013-05-08T09:33:27+07:00</p><p><b>requester</b>: <a>Practitioner/example: Dr. Adam Careful</a> "Adam CAREFUL"</p><p><b>performerType</b>: Nurse <span> ([not stated] "Qualified nurse")</span></p><p><b>performer</b>: <span>: Nurse Rossignol</span></p><p><b>supportingInfo</b>: <span>: Previous results</span></p><p><b>note</b>: this is the right device brand and model</p><p><b>relevantHistory</b>: <span>: Request for unspecified device</span></p></div>"
];
fhir:DeviceRequest.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "ip_request1.1" ]
];
fhir:DeviceRequest.instantiatesCanonical [
fhir:value "http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set";
fhir:index 0;
fhir:link <http://motivemi.com/artifacts/PlanDefinition/low-suicide-risk-order-set>
];
fhir:DeviceRequest.basedOn [
fhir:index 0;
fhir:Reference.display [ fhir:value "Homecare - DM follow-up" ]
];
fhir:DeviceRequest.priorRequest [
fhir:index 0;
fhir:Reference.display [ fhir:value "CGM ambulatory" ]
];
fhir:DeviceRequest.groupIdentifier [
fhir:Identifier.value [ fhir:value "ip_request1" ]
];
fhir:DeviceRequest.status [ fhir:value "active"];
fhir:DeviceRequest.intent [ fhir:value "instance-order"];
fhir:DeviceRequest.priority [ fhir:value "routine"];
fhir:DeviceRequest.code [
fhir:CodeableReference.concept [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:43148-6;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "43148-6" ]
];
fhir:CodeableConcept.text [ fhir:value "Insulin delivery device panel" ]
]
];
fhir:DeviceRequest.subject [
fhir:link <http://hl7.org/fhir/Patient/dicom>;
fhir:Reference.reference [ fhir:value "Patient/dicom" ]
];
fhir:DeviceRequest.encounter [
fhir:Reference.display [ fhir:value "Encounter 1" ]
];
fhir:DeviceRequest.occurrenceDateTime [ fhir:value "2013-05-08T09:33:27+07:00"^^xsd:dateTime];
fhir:DeviceRequest.authoredOn [ fhir:value "2013-05-08T09:33:27+07:00"^^xsd:dateTime];
fhir:DeviceRequest.requester [
fhir:link <http://hl7.org/fhir/Practitioner/example>;
fhir:Reference.reference [ fhir:value "Practitioner/example" ];
fhir:Reference.display [ fhir:value "Dr. Adam Careful" ]
];
fhir:DeviceRequest.performerType [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.display [ fhir:value "Qualified nurse" ]
];
fhir:CodeableConcept.text [ fhir:value "Nurse" ]
];
fhir:DeviceRequest.performer [
fhir:Reference.display [ fhir:value "Nurse Rossignol" ]
];
fhir:DeviceRequest.reason [
fhir:index 0;
fhir:CodeableReference.concept [
fhir:CodeableConcept.text [ fhir:value "gastroparesis" ]
]
], [
fhir:index 1;
fhir:CodeableReference.reference [
fhir:Reference.display [ fhir:value "Gastroparesis" ]
]
];
fhir:DeviceRequest.supportingInfo [
fhir:index 0;
fhir:Reference.display [ fhir:value "Previous results" ]
];
fhir:DeviceRequest.note [
fhir:index 0;
fhir:Annotation.text [ fhir:value "this is the right device brand and model" ]
];
fhir:DeviceRequest.relevantHistory [
fhir:index 0;
fhir:Reference.display [ fhir:value "Request for unspecified device" ]
] .
<http://hl7.org/fhir/Patient/dicom> a fhir:Patient .
<http://hl7.org/fhir/Practitioner/example> a fhir:Practitioner .
# - ontology header ------------------------------------------------------------
<http://hl7.org/fhir/DeviceRequest/insulinpump.ttl> a owl:Ontology;
owl:imports fhir:fhir.ttl;
owl:versionIRI <http://build.fhir.org/DeviceRequest/insulinpump.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.