DSTU2

This page is part of the FHIR Specification (v0.0.82: (v1.0.2: DSTU 1). 2). 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.8 6.1.9 Resource List - Examples

Example Index: List:

6.1.8.1 Raw </List> </List> Raw </List>
General List Example XML JSON
Empty List Example XML JSON
Exaple Example Medication Change List XML JSON
Real-world patient example General XML General List Example (id = "example") XML <!-- 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 --> JSON General List Example { "resourceType": "List", "text": { "status": "generated", "div": "<div>\n <table>\n <thead>\n <tr>\n <th>Condition</th>\n <th>Severity</th>\n <th>Date</th>\n <th>Location</th>\n <th>Status</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <td>Burnt Ear</td>\n <td>Severe</td>\n <td>24-May 2012</td>\n <td>Left Ear</td>\n <td>deleted</td>\n </tr>\n <tr>\n <td>Asthma</td>\n <td>Mild</td>\n <td>21-Nov 2012</td>\n <td>--</td>\n <td>added</td>\n </tr>\n </tbody>\n </table>\n </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.8.2
Simple genetic family member history Empty List XML Empty List JSON
Example (id = "example-empty") for risk assessment Raw XML JSON Empty List Example { "resourceType": "List", "text": { "status": "generated", "div": "<div>\n <p>The patient is not on any medications</p>\n </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.8.3
Example of current allergies list Med List XML Exaple Medication Change List (id = "med-list") XML <!-- 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 --> <!-- 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 --> <!-- 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 --> JSON
 

Exaple Medication Change List 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.

{ "resourceType": "List", "text": { "status": "generated", "div": "<div>\n <p>The patient is not on any medications</p>\n </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" } } ] }
var disqus_shortname = 'fhirdstu';(function() {var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js';(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); Please enable JavaScript to view the comments powered by Disqus. comments powered by Disqus