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 Consent (Legal information)

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 the patient's consent for the service.

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

FHIR snippet (HTML)

<section>
  <title value="Legal information"/>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="886961000000102"/>
      <display value="Legal information"/>
    </coding>
  </code>
  <text>
    <status value="additional"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table width="100%">
        <tbody>
          <tr>
            <th>Consent for treatment record</th>
            <td>Patient's consent for treatment has been attained.</td>
          </tr>
          <tr>
            <th>Consent relating to child</th>
            <td>Not Applicable</td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</section>


Example HTML render

Consent
Consent for treatment record Patient's consent for treatment has been attained.
Consent relating to child Not Applicable
back to top