2nd DSTU Draft For Comment

This page is part of the FHIR Specification (v0.4.0: DSTU 2 Draft). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2

6.1.9 Resource List - Examples

Example Index:

General List ExampleXMLJSON
Empty List ExampleXMLJSON
Example Medication Change ListXMLJSON
USLab Value Set ListXMLJSON

6.1.9.1 General

XML

General List Example (id = "example")

Raw XML

<List xmlns="http://hl7.org/fhir">
  <id value="example"/>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><!-- Snipped for brevity --></div>
  </text><!--    This list doesn't have a code. In actual fact, 
    it's a Condition list produced at the end of an encounter 
    to a regular primary care practitioner. But the only way
    to know this is to hunt down the place it is used 
    and find out    -->
  <source>
    <reference value="Patient/example"/>
  </source>
  <date value="2012-11-25T22:17:00+11:00"/>
  <ordered value="false"/>
  <mode value="changes"/>
  <entry>
    <flag>
      <text value="Deleted due to error"/>
    </flag>
    <deleted value="true"/>
    <item>
      <reference value="Condition/example"/>
    </item>
  </entry>
  <entry>
    <flag>
      <text value="Added"/>
    </flag>
    <item>
      <reference value="Condition/example2"/>
    </item>
  </entry>
</List>

JSON

General List Example

Raw JSON (Canonical)

{
  "resourceType": "List",
  "id": "example",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "source": {
    "reference": "Patient/example"
  },
  "date": "2012-11-25T22:17:00+11:00",
  "ordered": false,
  "mode": "changes",
  "entry": [
    {
      "flag": [
        {
          "text": "Deleted due to error"
        }
      ],
      "deleted": true,
      "item": {
        "reference": "Condition/example"
      }
    },
    {
      "flag": [
        {
          "text": "Added"
        }
      ],
      "item": {
        "reference": "Condition/example2"
      }
    }
  ]
}

6.1.9.2 Empty List

XML

Empty List Example (id = "example-empty")

Raw XML

<List xmlns="http://hl7.org/fhir">
  <id value="example-empty"/>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><!-- Snipped for brevity --></div>
  </text>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="182836005"/>
      <display value="Review of medication"/>
    </coding>
    <text value="Medication Review"/>
  </code>
  <source>
    <reference value="Patient/example"/>
  </source>
  <date value="2012-11-26T07:30:23+11:00"/>
  <mode value="snapshot"/>
  <emptyReason>
    <coding>
      <system value="http://hl7.org/fhir/special-values"/>
      <code value="nil-known"/>
      <display value="Nil Known"/>
    </coding>
    <text value="The patient is not on any medications"/>
  </emptyReason>
</List>

JSON

Empty List Example

Raw JSON (Canonical)

{
  "resourceType": "List",
  "id": "example-empty",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "code": {
    "coding": [
      {
        "system": "http://snomed.info/sct",
        "code": "182836005",
        "display": "Review of medication"
      }
    ],
    "text": "Medication Review"
  },
  "source": {
    "reference": "Patient/example"
  },
  "date": "2012-11-26T07:30:23+11:00",
  "mode": "snapshot",
  "emptyReason": {
    "coding": [
      {
        "system": "http://hl7.org/fhir/special-values",
        "code": "nil-known",
        "display": "Nil Known"
      }
    ],
    "text": "The patient is not on any medications"
  }
}

6.1.9.3 Med List

XML

Example Medication Change List (id = "med-list")

Raw XML

<List xmlns="http://hl7.org/fhir">
  <id value="med-list"/>
  <text>
    <status value="generated"/>
    <div xmlns="http://www.w3.org/1999/xhtml"><!-- Snipped for brevity --></div>
  </text>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="182836005"/>
      <display value="Review of medication"/>
    </coding>
    <text value="Medication Review"/>
  </code>
  <source>
    <reference value="Patient/example"/>
  </source>
  <date value="2013-11-20T23:10:23+11:00"/>
  <mode value="changes"/><!--    
      in a real medications list, we'd actually have medication resources.
      but this an example to demonstrate a changes list, so we'll just use 
      display    -->
  <entry><!--    patient was prescribed hydroxocobalamin. the flag marks this 
       as a prescription. Note that healthcare workers will now get into
       a long debate the exact implication of &quot;prescribed&quot;. That's why the
       spec doesn't fix the flag values    -->
    <flag>
      <coding>
        <system value="http://nehta.gov.au/codes/medications/changetype"/>
        <code value="02"/>
        <display value="Prescribed"/>
      </coding>
    </flag>
    <item>
      <display value="hydroxocobalamin"/>
    </item>
  </entry><!--   
     on this one, we record that the patient was taken off morphine sulfate.
     because not every system knows the flags, and the ensure there's no confusion,
     if the flag implies that something was removed from the list, then the
     deleted element must also be set 
     -->
  <entry>
    <flag>
      <coding>
        <system value="http://nehta.gov.au/codes/medications/changetype"/>
        <code value="02"/>
        <display value="Cancelled"/>
      </coding>
    </flag>
    <deleted value="true"/>
    <item>
      <display value="Morphine Sulfate"/>
    </item>
  </entry>
</List>

JSON

Example Medication Change List

Raw JSON (Canonical)

{
  "resourceType": "List",
  "id": "med-list",
  "text": {
    "status": "generated",
    "div": "<div>!-- Snipped for Brevity --></div>"
  },
  "code": {
    "coding": [
      {
        "system": "http://snomed.info/sct",
        "code": "182836005",
        "display": "Review of medication"
      }
    ],
    "text": "Medication Review"
  },
  "source": {
    "reference": "Patient/example"
  },
  "date": "2013-11-20T23:10:23+11:00",
  "mode": "changes",
  "entry": [
    {
      "flag": [
        {
          "coding": [
            {
              "system": "http://nehta.gov.au/codes/medications/changetype",
              "code": "02",
              "display": "Prescribed"
            }
          ]
        }
      ],
      "item": {
        "display": "hydroxocobalamin"
      }
    },
    {
      "flag": [
        {
          "coding": [
            {
              "system": "http://nehta.gov.au/codes/medications/changetype",
              "code": "02",
              "display": "Cancelled"
            }
          ]
        }
      ],
      "deleted": true,
      "item": {
        "display": "Morphine Sulfate"
      }
    }
  ]
}

Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.