type: exampleresource: Listexample: list-example-socialhistory
List Example: list-example-socialhistory
Narrative
| Item | Description | Date | Location | Status |
|---|---|---|---|---|
| Burnt Ear | Severe | 24-May 2012 | Left Ear | deleted |
| Asthma | Mild | 21-Nov 2012 | -- | added |
Example XML
<?xml version="1.0" encoding="UTF-8"?>
<List xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://hl7.org/fhir ../../schema/list.xsd"
xmlns="http://hl7.org/fhir">
<id value="social-history"/>
<text>
<status value="generated"/>
<div xmlns="http://www.w3.org/1999/xhtml">
<table>
<thead>
<tr>
<th>Item</th>
<th>Description</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>
<!-- We're including the actual social history as contained resources
but could equally point to a 'real' resource of that existed-->
<contained>
<Observation>
<id value='obs1'/>
<code>
<coding>
<system value='http://snomed.info/sct'/>
<code value="229819007"/>
<display value="Tobacco use and exposure (observable entity)"/>
</coding>
<text value="Smoking History"/>
</code>
<valueString value="Smoked 20x day for 10 years. Has not smokde for last 3 years."/>
<status value="final"/>
<reliability value="ok"/>
<subject>
<reference value="Patient/example"/>
</subject>
</Observation>
</contained>
<contained>
<Observation>
<id value='obs2'/>
<code>
<coding>
<system value='http://snomed.info/sct'/>
<code value="397021000000108"/>
<display value="Alcohol use (UK Specific)"/>
</coding>
<text value="Smoking History"/>
</code>
<valueString value="Social drinker. 3 bottle Gin per week, 6 bottles beer per day."/>
<status value="final"/>
<reliability value="ok"/>
<subject>
<reference value="Patient/example"/>
</subject>
</Observation>
</contained>
<status value="current"/>
<mode value="snapshot"/>
<!-- This is a List of Social history -->
<code>
<coding>
<system value='http://snomed.info/sct'/>
<code value="365448001"/>
<display value="Social and personal history finding (finding)"/>
</coding>
<text value="Social History"/>
</code>
<date value="2012-11-25T22:17:00+11:00"/>
<!-- The patient supplied the information -->
<source>
<reference value="Patient/example"/>
</source>
<entry>
<item>
<reference value="#obs1"/>
<display value="Smoking History"/>
</item>
</entry>
<entry>
<item>
<reference value="#obs2"/>
<display value="Alcohol History"/>
</item>
</entry>
</List>