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 Information and advice given

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 Information and advice given.

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

FHIR snippet (HTML)

<section>
  <title value="Information and Advice given"/>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="1052951000000105"/>
      <display value="Information and advice given"/>
    </coding>
  </code>
  <text>
    <status value="additional"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table width="100%">
        <tbody>
          <tr>
            <th>Information and advice given</th>
            <td>
              <p>Patient advised that he should consider discussing with his GP whether he can be set up for electronic repeat dispensing if his medication regime is stable.</p>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</section>


Example HTML render

Information and advice given
Information and advice given

Patient advised that he should consider discussing with his GP whether he can be set up for electronic repeat dispensing if his medication regime is stable.

back to top