This is the Continuous Integration Build of FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions
Example CarePlan/f202 (Turtle)
Raw Turtle (+ also see Turtle/RDF Format Specification)
Care plan to address head-neck tumor by chemotherapy
@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:CarePlan ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "f202"] ; #
fhir:contained ( [
a fhir:CareTeam ;
fhir:id [ fhir:v "careteam" ] ;
fhir:participant ( [
fhir:role [
fhir:coding ( [
a sct:28995006 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "28995006" ] ;
fhir:display [ fhir:v "Treated with" ]
] )
] ;
fhir:member [
fhir:reference [ fhir:v "Practitioner/f201" ] ;
fhir:display [ fhir:v "Dokter Bronsig" ]
]
] )
] [
a fhir:Goal ;
fhir:id [ fhir:v "goal" ] ;
fhir:lifecycleStatus [ fhir:v "active" ] ;
fhir:description [
fhir:text [ fhir:v "Elimination of the spenoid bone tumor" ]
] ;
fhir:subject [
fhir:reference [ fhir:v "Patient/f201" ] ;
fhir:display [ fhir:v "Roel" ]
]
] ) ; #
fhir:status [ fhir:v "active"] ; #
fhir:intent [ fhir:v "plan"] ; #
fhir:subject [
fhir:reference [ fhir:v "Patient/f201" ] ; # It entails Roel's careplan
fhir:display [ fhir:v "Roel" ]
] ; #
fhir:careTeam ( [
fhir:reference [ fhir:v "#careteam" ]
] ) ; #
fhir:addresses ( [
fhir:reference [
fhir:reference [ fhir:v "Condition/f202" ] ;
fhir:display [ fhir:v "Roel's head-neck tumor" ]
]
] ) ; #
fhir:goal ( [
fhir:reference [ fhir:v "#goal" ]
] ) ; #
fhir:activity ( [
fhir:performedActivity ( [
fhir:reference [
fhir:reference [ fhir:v "Procedure/f201" ] ;
fhir:display [ fhir:v "Roel's Chemotherapy" ]
]
] ) ;
fhir:plannedActivityReference [
fhir:reference [ fhir:v "RequestOrchestration/example" ]
] # Chemotherapy
] )] . #
# -------------------------------------------------------------------------------------
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.