Electronic Long-Term Services and Supports (eLTSS) Release 1 - US Realm

This page is part of the electronic Long-Term Services and Supports Implementation Guide (v1.0.0: STU 1) based on FHIR R4. This is the current published version in it's permanent home (it will always be available at this URL). 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://hl7.org.fhir/sid/us-npi"/>
          <value value="9941339108"/>
        </identifier>
        <identifier>
          <system value="http://www.acme.org/practitioners"/>
          <value value="25456"/>
        </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>