This
page
is
part
of
the
FHIR
Specification
(v5.0.0:
R5
-
STU
).
This
is
the
current
published
version
in
it's
permanent
home
(it
will
always
be
available
at
this
URL).
For
a
full
list
of
available
versions,
see
the
Directory
of
published
versions
.
Page
versions:
R5
R4B
R4
R3
Publish-box
(todo)
Example
PlanDefinition/options-example
(Turtle)
Raw
Turtle
(+
also
see
Turtle/RDF
Format
Specification
)
Plan
Definition
Illustrating
Related
Actions
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[a fhir:PlanDefinition ;
<http://hl7.org/fhir/PlanDefinition/options-example> a fhir:PlanDefinition ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "options-example"] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">[Put rendering here]</div>"^^rdf:XMLLiteral
] ; #
fhir:contained ( [
a fhir:ActivityDefinition ;
fhir:id [ fhir:v "activitydefinition-medicationrequest-1" ] ;
fhir:status [ fhir:v "draft" ] ;
fhir:kind [ fhir:v "MedicationRequest" ] ;
fhir:product [
a fhir:CodeableConcept ;
fhir:text [ fhir:v "Medication 1" ]
]
] [
a fhir:ActivityDefinition ;
fhir:id [ fhir:v "activitydefinition-medicationrequest-2" ] ;
fhir:status [ fhir:v "draft" ] ;
fhir:kind [ fhir:v "MedicationRequest" ] ;
fhir:product [
a fhir:CodeableConcept ;
fhir:text [ fhir:v "Medication 2" ]
]
] ) ; #
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ] ;
fhir:value [
a fhir:code ;
fhir:v "cds"
]
] ) ; #
fhir:identifier ( [
fhir:system [ fhir:v "urn:ietf:rfc:3986"^^xsd:anyURI ] ;
fhir:value [ fhir:v "urn:oid:2.16.840.1.113883.4.642.11.15" ]
] ) ; #
fhir:name [ fhir:v "ThisExampleIllustratesRelationshipsBetweenActions"] ; #
fhir:title [ fhir:v "This example illustrates relationships between actions."] ; #
fhir:status [ fhir:v "draft"] ; #
fhir:publisher [ fhir:v "HL7 International / Clinical Decision Support"] ; #
fhir:contact ( [
fhir:telecom ( [
fhir:system [ fhir:v "url" ] ;
fhir:value [ fhir:v "http://www.hl7.org/Special/committees/dss" ]
] )
] ) ; #
fhir:description [ fhir:v "This example illustrates relationships between actions."] ; #
fhir:action ( [
fhir:groupingBehavior [ fhir:v "logical-group" ] ;
fhir:selectionBehavior [ fhir:v "all" ] ;
fhir:action ( [
fhir:id [ fhir:v "medication-action-1" ] ;
fhir:title [ fhir:v "Administer Medication 1" ] ;
fhir:definition [ fhir:v "#activitydefinition-medicationrequest-1"^^xsd:anyURI ]
fhir:definition [
a fhir:canonical ;
fhir:v "#activitydefinition-medicationrequest-1"^^xsd:anyURI
]
] [
fhir:id [ fhir:v "medication-action-2" ] ;
fhir:title [ fhir:v "Administer Medication 2" ] ;
fhir:relatedAction ( [
fhir:targetId [ fhir:v "medication-action-1" ] ;
fhir:relationship [ fhir:v "after-end" ] ;
fhir:offset [
a fhir:Duration ;
fhir:value [ fhir:v "1"^^xsd:decimal ] ;
fhir:unit [ fhir:v "h" ]
]
] ) ;
fhir:definition [ fhir:v "#activitydefinition-medicationrequest-2"^^xsd:anyURI ]
fhir:definition [
a fhir:canonical ;
fhir:v "#activitydefinition-medicationrequest-2"^^xsd:anyURI
]
] )
] )] . #
] ) . #
# -------------------------------------------------------------------------------------
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.