This page is part of the FHIR Specification (v0.0.82: DSTU 1). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2
General Person Example (id = "example")
<CarePlan xmlns="http://hl7.org/fhir"> <text> <status value="additional"/> <div xmlns="http://www.w3.org/1999/xhtml"> <p> A simple care plan to indicate a patient taking their weight once a day because of obesity. Some Notes: </p> <ul> <li>It would be good to have some way of specifying/coding a goal. e.g. what the target weight is</li> <li>In the codeable concepts I've been lazy and just put the text. There should, of course, be a code behind these</li> </ul> </div> </text> <contained> <Condition id="p1"> <subject> <reference value="Patient/example"/> <display value="Peter James Chalmers"/> </subject> <code> <text value="Obesity"/> </code> <status value="confirmed"/> </Condition> </contained> <contained> <Practitioner id="pr1"> <name> <family value="Dietician"/> <given value="Dorothy"/> </name> <specialty> <text value="Dietician"/> </specialty> </Practitioner> </contained> <patient> <reference value="Patient/example"/> <display value="Peter James Chalmers"/> </patient> <status value="active"/> <period> <end value="2013-01-01"/> </period> <concern> <reference value="#p1"/> <display value="obesity"/> </concern> <participant> <role> <text value="responsiblePerson"/> </role> <member> <reference value="Patient/example"/> <display value="Peter James Chalmers"/> </member> </participant> <participant> <role> <text value="adviser"/> </role> <member> <reference value="#pr1"/> <display value="Dorothy Dietition"/> </member> </participant> <goal> <description value="Target weight is 80 kg. Note: be nice if this could be coded"/> </goal> <activity> <prohibited value="false"/> <simple> <category value="observation"/> <code> <text value="a code for weight measurement"/> </code> <timingSchedule> <repeat> <frequency value="1"/> <duration value="1"/> <units value="d"/> </repeat> </timingSchedule> <performer> <reference value="Patient/example"/> <display value="Peter James Chalmers"/> </performer> </simple> </activity> </CarePlan>