View raw Markdown
type: exampleresource: CarePlanexample: careplan-example-f202-malignancy

CarePlan Example: careplan-example-f202-malignancy

Example XML

<?xml version="1.0" encoding="UTF-8"?><CarePlan xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../schema/careplan.xsd">
  <id value="f202"/>
  <contained>
    <CareTeam>
        <id value="careteam"/>
    <participant>
            <role>
                <coding>
                <system value="http://snomed.info/sct"/>
                <code value="28995006"/>
                <display value="Treated with"/>
            </coding>
            </role>
            <member>
            <reference value="Practitioner/f201"/>
            <display value="Dokter Bronsig"/>
            </member>
    </participant>
    </CareTeam>
  </contained>
  <contained>
    <Goal>
      <id value="goal"/>
      <lifecycleStatus value="active" />
      <description>
        <text value="Elimination of the spenoid bone tumor"/>
      </description>
      <subject>
        <reference value="Patient/f201"/>
        <display value="Roel"/>
      </subject>      
    </Goal>
  </contained>
  <status value="active"/>
  <intent value="plan"/>
  <subject>
    <!--It entails Roel's careplan-->
    <reference value="Patient/f201"/>
    <display value="Roel"/>
  </subject>
  <careTeam>
    <reference value="#careteam"/>
  </careTeam>
  <addresses>
    <reference>
      <reference value="Condition/f202"/>
      <display value="Roel's head-neck tumor"/>
    </reference>
  </addresses>
  <goal>
    <reference value="#goal"/>
  </goal>
  <activity>
    <performedActivity>
      <reference>
        <reference value="Procedure/f201"/>
        <display value="Roel's Chemotherapy"/>
      </reference>
    </performedActivity>
    <!-- Chemotherapy -->
    <plannedActivityReference>
        <reference value="RequestOrchestration/example"/>
    </plannedActivityReference>
  </activity>
</CarePlan>