This page is part of the FHIR Specification (v1.4.0:
STU
3).
The
current
version
which
supercedes
this
version
is
3 Ballot 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:
R4
R3
R2
Using
Codes
Code
Systems
Value
Sets
Concept
Maps
Identifier
Systems
4.2.13.38
HL7
Version
2
Table
0038
Vocabulary
Work
Group
Maturity
Level
:
N/A
External
Use
Context
:
Any
This
is
a
table
defined
as
part
of
HL7
v2
.
Related
FHIR
content:
v2
Order
status
.
Summary
Name:
v2
Order
status
Definition:
FHIR
Value
set/code
system
definition
for
HL7
v2
table
0038
(
Order
status)
Code
System
URL:
http://hl7.org/fhir/v2/0038
Value
Set
URL:
http://hl7.org/fhir/ValueSet/v2-0038
OID:
??
CodeSystem
Resource
XML
/
JSON
ValueSet
Resource
XML
/
JSON
This
value
set
is
used
in
the
following
places:
This
value
set
is
the
designated
'entire
code
system'
value
set
for
v2
Order
status
4.2.13.38.1
Code
System
Content
Order
status
Code
Description
Deutsch
(German)
Nederlands
(Dutch)
Comment
Version
A
Some,
but
not
all,
results
available
einige,
aber
nicht
alle,
Resultate
verfügbar
Sommige
maar
niet
alle
resultaten
beschikbaar
added
v2.3
CA
Order
was
canceled
Auftrag
storniert
Aanvraag
is
geannuleerd
from
v2.1
CM
Order
is
completed
Auftrag
ausgeführt
Aanvraag
is
afgerond
from
v2.1
DC
Order
was
discontinued
Ausführung
des
Auftrags
abgebrochen
Aanvraag
is
afgebroken
from
v2.1
ER
Error,
order
not
found
Auftrag
nicht
gefunden
Fout,
aanvraag
niet
gevonden
from
v2.1
HD
Order
is
on
hold
Auftragsbearbeitung
ausgesetzt
Aanvraag
is
aangehouden
from
v2.1
IP
In
process,
unspecified
Auftrag
in
Bearbeitung
Aanvraag
loopt,
niet-specificeerd
from
v2.1
RP
Order
has
been
replaced
Auftrag
ist
ersetzt
worden
Aanvraag
is
vervangen
added
v2.2
. For a full list of available versions, see the
Directory of published versions
SC
In
process,
scheduled
Auftrag
hat
Termin
oder
ist
in
Ausführung
Aanvraag
loopt,
is
gepland
from
v2.1
®©
HL7.org
2011+.
FHIR
Release
3
(STU;
v3.0.2-11200)
generated
on
Thurs,
Oct
24,
2019
11:53+1100.
QA
Page
Links:
Oncology example
@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/sct/> .
@prefix xs: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://hl7.org/fhir//MedicationOrder/medrx006> a fhir:MedicationOrder;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "medrx006"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:MedicationOrder.status [
fhir:value "on-hold";
fhir:string.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "http://localhost:3000/MedicationOrder/mscode#original-status" ];
fhir:Extension.valueCode [ fhir:value "pending" ] ]
];
fhir:MedicationOrder.medicationReference [
fhir:reference <http://hl7.org/fhir/Medication/MedicationExample15>;
fhir:Reference.reference [ fhir:value "Medication/MedicationExample15" ]
];
fhir:MedicationOrder.patient [
fhir:reference <http://hl7.org/fhir/Patient/f001>;
fhir:Reference.reference [ fhir:value "Patient/f001" ]
];
fhir:MedicationOrder.dosageInstruction [
fhir:index 0;
fhir:MedicationOrder.dosageInstruction.text [ fhir:value "Capecitabine 1000 mg/m^2 PO twice daily D1-14" ];
fhir:MedicationOrder.dosageInstruction.timing [
fhir:Timing.repeat [
fhir:Timing.repeat.duration [ fhir:value "21"^^xs:decimal ];
fhir:Timing.repeat.durationUnit [ fhir:value "d" ];
fhir:Timing.repeat.frequency [ fhir:value "2"^^xs:int ];
fhir:Timing.repeat.period [ fhir:value "1"^^xs:decimal ];
fhir:Timing.repeat.periodUnit [ fhir:value "d" ] ] ];
fhir:MedicationOrder.dosageInstruction.route [
a sct:394899003;
fhir:CodeableConcept.coding [
fhir:index 0;
a sct:394899003;
fhir:Coding.system [ fhir:value "http://snomed.info/sct" ];
fhir:Coding.code [ fhir:value "394899003" ];
fhir:Coding.display [ fhir:value "oral administration of treatment" ] ] ];
fhir:MedicationOrder.dosageInstruction.doseQuantity [
fhir:Quantity.value [ fhir:value "1000"^^xs:decimal ];
fhir:Quantity.unit [ fhir:value "mg/m^2" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "ml" ] ]
];
fhir:MedicationOrder.dispenseRequest [
fhir:MedicationOrder.dispenseRequest.quantity [
fhir:Quantity.value [ fhir:value "1700"^^xs:decimal ];
fhir:Quantity.unit [ fhir:value "mg" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "mg" ] ]
].
# -------------------------------------------------------------------------------------
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.