This page is part of the FHIR Specification (v0.06: DSTU 1 Ballot 2). The current version which supercedes this version is 4.0.1. For a full list of available versions, see the Directory of published versions

 

General List Example (id = "example")

<List xmlns="http://hl7.org/fhir">
  <!--   This list doesn't have a code. In actual fact, 
    it's a problem list produced at the end of a visit 
    to a regular primary care provider. But the only way
    to know this is to hunt down the place it is used 
    and find out   -->
  <source>
    <type>Person</type>
    <id>grahame</id>
  </source>
  <date>2012-11-25T22:17:00+11:00</date>
  <entry>
    <status>deleted</status>
    <item>
      <type>Problem</type>
      <id>example</id>
    </item>
  </entry>
  <entry>
    <status>added</status>
    <item>
      <type>Problem</type>
      <id>example2</id>
    </item>
  </entry>
  
  <text>
    <status>generated</status>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table>
        <thead>
          <tr>
            <th>Problem</th>
            <th>Severity</th>
            <th>Date</th>
            <th>Location</th>
            <th>Status</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td>Burnt Ear</td>
            <td>Severe</td>
            <td>24-May 2012</td>
            <td>Left Ear</td>
            <td>deleted</td>
          </tr>
          <tr>
            <td>Asthma</td>
            <td>Mild</td>
            <td>21-Nov 2012</td>
            <td>--</td>
            <td>added</td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</List>