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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
[] a fhir:PlanDefinition;
fhir:Resource.id [ fhir:value "options-example"], [ fhir:value "activitydefinition-medicationrequest-1"], [ fhir:value "activitydefinition-medicationrequest-2"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ]
];
fhir:PlanDefinition.title [ fhir:value "This example illustrates relationships between actions."];
fhir:PlanDefinition.status [ fhir:value "draft"];
fhir:PlanDefinition.experimental [ fhir:value "true"];
fhir:PlanDefinition.action [
fhir:index 0;
fhir:PlanDefinition.groupingBehavior [ fhir:value "logical-group" ];
fhir:PlanDefinition.selectionBehavior [ fhir:value "all" ];
fhir:PlanDefinition.action [
fhir:index 0;
fhir:Element.id [ fhir:value "medication-action-1" ];
fhir:PlanDefinition.title [ fhir:value "Administer Medication 1" ];
fhir:PlanDefinition.definition [ fhir:value "#activitydefinition-medicationrequest-1" ]
], [
fhir:index 1;
fhir:Element.id [ fhir:value "medication-action-2" ];
fhir:PlanDefinition.title [ fhir:value "Administer Medication 2" ];
fhir:PlanDefinition.relatedAction [
fhir:index 0;
fhir:PlanDefinition.actionId [ fhir:value "medication-action-1" ];
fhir:PlanDefinition.relationship [ fhir:value "after-end" ];
fhir:PlanDefinition.offset [
fhir:Quantity.value [ fhir:value "1" ];
fhir:Quantity.unit [ fhir:value "h" ];
fhir:Quantity.system [ fhir:value "http://unitsofmeasure.org" ];
fhir:Quantity.code [ fhir:value "h" ]
]
];
fhir:PlanDefinition.definition [ fhir:value "#activitydefinition-medicationrequest-2" ]
[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: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:name [ fhir:v "ThisExampleIllustratesRelationshipsBetweenActions"] ; #
fhir:title [ fhir:v "This example illustrates relationships between actions."] ; #
fhir:status [ fhir:v "draft"] ; #
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: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 ]
] )
] )] . #
# -------------------------------------------------------------------------------------
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.