This
page
is
part
of
the
FHIR
Specification
(v5.0.0:
R5
-
STU
v6.0.0-ballot1:
Release
6
Ballot
(1st
Draft)
(see
Ballot
Notes
).
This
is
the
The
current
published
version
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
is
5.0.0
.
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
Example
ServiceRequest/do-not-turn
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
An
example
of
an
order
to
not
turn
a
patient
@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:ServiceRequest ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "do-not-turn"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: ServiceRequest</b><a name=\"do-not-turn\"> </a></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 ServiceRequest "do-not-turn" </p></div><p><b>identifier</b>: <span title=\" placer identifier \">id: 20170201-0002</span></p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>priority</b>: stat</p><p><b>doNotPerform</b>: true</p><h3>Codes</h3><table class=\"grid\"><tr><td>-</td><td><b>Concept</b></td></tr><tr><td>*</td><td>Turning patient in bed (procedure) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#359962006)</span></td></tr></table><p><b>subject</b>: <a href=\"patient-example.html\">Patient/example</a> "Peter CHALMERS"</p><p><b>authoredOn</b>: <span title=\" TimeStamp when order authorized \">2017-02-01T17:23:07Z</span></p><p><b>requester</b>: <a href=\"practitioner-example.html\">Practitioner/example: Dr Adam Careful</a> "Adam CAREFUL"</p><h3>Reasons</h3><table class=\"grid\"><tr><td>-</td><td><b>Reference</b></td></tr><tr><td>*</td><td><span>: Patient has a spinal fracture</span></td></tr></table></div>"
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: ServiceRequest</b><a name=\"do-not-turn\"> </a></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 ServiceRequest "do-not-turn" </p></div><p><b>identifier</b>: <span title=\" placer identifier \">id: 20170201-0002</span></p><p><b>status</b>: active</p><p><b>intent</b>: order</p><p><b>priority</b>: stat</p><p><b>doNotPerform</b>: true</p><h3>Codes</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Concept</b></td></tr><tr><td style=\"display: none\">*</td><td>Turning patient in bed (procedure) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOMED CT</a>#359962006)</span></td></tr></table><p><b>subject</b>: <a href=\"patient-example.html\">Patient/example</a> "Peter CHALMERS"</p><p><b>authoredOn</b>: <span title=\" TimeStamp when order authorized \">2017-02-01T17:23:07Z</span></p><p><b>requester</b>: <a href=\"practitioner-example.html\">Practitioner/example: Dr Adam Careful</a> "Adam CAREFUL"</p><h3>Reasons</h3><table class=\"grid\"><tr><td style=\"display: none\">-</td><td><b>Reference</b></td></tr><tr><td style=\"display: none\">*</td><td><span>: Patient has a spinal fracture</span></td></tr></table></div>"
] ; # placer identifier
fhir:identifier ( [
fhir:system [ fhir:v "http://goodhealth.org/placer-ids"^^xsd:anyURI ] ;
fhir:value [ fhir:v "20170201-0002" ]
] ) ; #
fhir:status [ fhir:v "active"] ; #
fhir:intent [ fhir:v "order"] ; #
fhir:priority [ fhir:v "stat"] ; #
fhir:doNotPerform [ fhir:v "true"^^xsd:boolean] ; #
fhir:code [
fhir:concept [
fhir:coding ( [
a sct:359962006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "359962006" ] ;
fhir:display [ fhir:v "Turning patient in bed (procedure)" ]
] )
]
] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/example" ]
] ; #
fhir:authoredOn [ fhir:v "2017-02-01T17:23:07Z"^^xsd:dateTime] ; # TimeStamp when order authorized
fhir:requester [
fhir:reference [ fhir:v "Practitioner/example" ] ;
fhir:display [ fhir:v "Dr Adam Careful" ]
] ; #
fhir:reason ( [
fhir:reference [
fhir:display [ fhir:v "Patient has a spinal fracture" ]
]
] )] . # demonstrating in this example the reason reference element
# -------------------------------------------------------------------------------------
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.