View raw Markdown
type: exampleresource: CarePlanexample: careplan-example-f203-sepsis

CarePlan Example: careplan-example-f203-sepsis

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="f203"/>
    <contained>
    <CareTeam>
        <id value="careteam"/>
        <participant>
            <role>
            <coding>
                <system value="http://snomed.info/sct"/>
                <code value="425268008"/>
                <display value="Review of care plan"/>
          </coding>
            </role>
            <member>
            <reference value="Practitioner/f201"/>
            <display value="Dokter Bronsig"/>
            </member>
    </participant>
    <participant>
            <role>
            <coding>
                <system value="http://snomed.info/sct"/>
                <code value="278110001"/>
                <display value="Radiographic imaging"/>
          </coding>
            </role>
            <member>
            <reference value="Practitioner/f202"/>
            <display value="Luigi Maas"/>
            </member>
    </participant>
    </CareTeam>
  </contained>
  <contained>
    <Goal>
      <id value="goal"/>
      <lifecycleStatus value="cancelled" />
      <description>
        <text value="Check whether further treatment of sepsis/pulmonary abcess is required"/>
      </description>
      <subject>
        <reference value="Patient/f201"/>
        <display value="Roel"/>
      </subject>      
    </Goal>
  </contained>
  <contained>
    <ServiceRequest>
      <id value="activity"/>
      <status value="active"/>
      <intent value="order"/>
      <doNotPerform value="false"/>
      <code>
        <concept>
            <coding>
              <system value="http://snomed.info/sct"/>
              <code value="241541005"/>
              <display value="High resolution computed tomography of lungs"/>
            </coding>
        </concept>
      </code>
      <subject>
        <!--It entails Roel's careplan-->
        <reference value="Patient/f201"/>
        <display value="Roel"/>
      </subject>
    </ServiceRequest>
  </contained>
  <status value="completed"/>
  <intent value="plan"/>
  <subject>
    <!--It entails Roel's careplan-->
    <reference value="Patient/f201"/>
    <display value="Roel"/>
  </subject>
  <period>
    <start value="2013-04-14"/>
    <end value="2013-04-21"/>
  </period>
  <careTeam>
    <reference value="#careteam"/>
  </careTeam>
  <addresses>
    <reference>
      <reference value="Condition/f203"/>
      <display value="Roel's sepsis"/>
    </reference>
  </addresses>
  <goal>
    <reference value="#goal"/>
  </goal>
  <activity>
    <plannedActivityReference>
        <reference value="#activity"/>
    </plannedActivityReference>
    <!-- moved to contained
    <plannedActivityDetail>
      <kind value="ServiceRequest"/>
      <code>
        <coding>
          <system value="http://snomed.info/sct"/>
          <code value="241541005"/>
          <display value="High resolution computed tomography of lungs"/>
        </coding>
      </code>
      <status value="not-started"/>
      <doNotPerform value="false"/>
    </plannedActivityDetail>
    -->
  </activity>
</CarePlan>