GP Connect - Emergency Supply of Medications (ITK3)

Part of the GP Connect product family
Note: This specification was originally titled "Digital Medicines (DigiMeds)" and maintained by the PODAC Programme.

How to populate History

The Composition.section element is used to convey both HTML and where necessary, references to structrued FHIR elements contained within the payload.

More information can be found on:

The FHIR snippets below provides an example of how to populate relevant past medical history.

Note: HTML must be sent as part of the payload. A FHIR resource is not expected.

FHIR snippet (HTML)

<section>
  <title value="History"/>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="717121000000105"/>
      <display value="History"/>
    </coding>
  </code>
  <text>
    <status value="additional"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table width="100%">
        <tbody>
          <tr>
            <th>Relevant past medical, surgical and mental health history</th>
            <td>
              <p>Patient has Type 2 diabetes and hypertension.</p>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</section>


Example HTML render

History
Relevant past medical, surgical and mental health history

Patient has Type 2 diabetes and hypertension.

back to top