This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
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: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:extension ( [
fhir:url [ fhir:v "http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"^^xsd:anyURI ] ;
fhir:value [ fhir:v "cds" ]
] ) ; #
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: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.