This
page
is
part
of
the
FHIR
Specification
(v0.0.82:
(v1.0.2:
DSTU
1).
2).
The
current
version
which
supercedes
this
version
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
5.13.5
5.26.5
Resource
OrderResponse
-
Examples
Example
Index:
List:
|
Example
of
orderresponse
|
XML
|
JSON
|
5.13.5.1
|
General
XML
Example
of
orderresponse
(id
=
"example")
Raw
XML
<!--
this should be a response to the example request,
but we don't yet have all the resource types in
place to make this happen
So for now, although the Order message referred to
here contains a prescription resource, this example
response contains lab reports
-->
<!--
there's a loose relationship between the status of
the order, and status information on the fulfillment
resources. For instance, in the case of a lab, it probably
wouldn't make sense to claim that the response is anything
but completed when the report is marked as "final" (as it is
in this case). However due to the diversity of business
practices in the order/fulfillment cycle, there's no formal
rules about what is allowed
-->
<!--
the lab report that the lab provides as a token of its
fulfillment for this order
In the case of a lab order, the report is usually the real/only
outcome. However in a case such as a medication administration,
the actual administration is the fulfillment - the MedicationAdministration
resource is only a token of the fulfillment of the order
-->
|
</OrderResponse>
JSON
Example
Usage
note:
every
effort
has
been
made
to
ensure
that
the
examples
are
correct
and
useful,
but
they
are
not
a
normative
part
of
orderresponse
the
specification.
{
"resourceType": "OrderResponse",
"text": {
"status": "generated",
"div": "<div>Lab Report completed at 13:10 28-Dec 2012</div>"
},
"request": {
"reference": "Order/example"
},
"date": "2012-12-28T13:10:56+11:00",
"who": {
"reference": "Organization/1832473e-2fe0-452d-abe9-3cdb9879522f"
},
"code": "complete",
"fulfillment": [
{
"reference": "DiagnosticReport/101"
}
]
}