ELTSS 0.1.0 - STU1 Ballot 1

This page is part of the electronic Long-Term Services and Supports Implementation Guide (v0.1.0: STU 1 Ballot 1) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

eLTSS Planner Example - XML Representation

(back to narrative)

Raw xml


<!-- 
    Original : 5/22/2018
    Updated :  01/23/2019
    FHIR version : 4.0
 -->
<Bundle xmlns="http://hl7.org/fhir">
  <id value="practitioner-planner1"/>
  <type value="collection"/>
<!--   Support Planner (CarePlan author)  -->
  <entry>
    <fullUrl value="http://example.org/Practitioner/planner1"/>
    <resource>
      <Practitioner>
        <id value="planner1"/>
        <meta>
          <profile
                   value="http://hl7.org/fhir/us/eltss/StructureDefinition/practitioner-eltss"/>
        </meta>
        <text>
          <status value="generated"/>
          <div xmlns="http://www.w3.org/1999/xhtml">
            <p><b>Support Planner / Phone:</b> Mark Planner / (678) 555 1221</p>
          </div>
        </text>
      <!--  identifier is required by US Core  -->
        <identifier>
          <system value="http://www.acme.org/practitioners"/>
          <value value="23"/>
        </identifier>
      <!--  [eLTSS Support Planner Name]  -->
        <name>
          <text value="Mark Planner"/>
          <family value="Planner"/>
          <given value="Mark"/>
        </name>
      <!--  [eLTSS Support Planner Phone Number]  -->
        <telecom>
          <system value="phone"/>
          <value value="(678) 555 1221"/>
        </telecom>
      </Practitioner>
    </resource>
  </entry>
</Bundle>