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 GP Practice

The Composition.section element is used to convey both HTML and the 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 GP practice FHIR resource, and the respective HTML.


FHIR snippet (HTML)

<section>
  <title value="GP Practice"/>
  <code>
    <coding>
      <system value="http://snomed.info/sct"/>
      <code value="886711000000101"/>
      <display value="GP practice"/>
    </coding>
  </code>
  <text>
    <status value="additional"/>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table width="100%">
        <tbody>
          <tr>
            <th>GP name</th>
            <td>
              <p>Prefix: Dr</p>
              <p>Given Name: Paul</p>
              <p>Family Name: Rastall</p>
            </td>
          </tr>
          <tr>
            <th>GP practice identifier</th>
            <td>
              <p>ODS Organization Code:GP123456</p>
            </td>
          </tr>
          <tr>
            <th>GP practice details</th>
            <td>
              <p>Name: MGP Medical Centre</p>
              <p>Address:</p>
              <p>Address Line: 1 MGP House, Overtown</p>
              <p>City: Leeds</p>
              <p>Post Code: LS21 7PA</p>
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
  <!--Reference to the Organisation entry as the source of information for this section-->
  <entry>
    <reference value="urn:uuid:e46d86bf-1720-4c55-878f-a034d8349bbd"/>
  </entry>
</section>


Example HTML render

GP practice
GP name

Prefix: Dr

Given Name: Paul

Family Name: Rastall

GP practice identifier

ODS Organization Code:GP123456

GP practice details

Name: MGP Medical Centre

Address:

Address Line: 1 MGP House, Overtown

City: Leeds

Post Code: LS21 7PA


FHIR snippet (CareConnect-Organization-1)

<entry>
    <fullUrl value="urn:uuid:e46d86bf-1720-4c55-878f-a034d8349bbd"/>
    <resource>
        <Organization>
            <id value="e46d86bf-1720-4c55-878f-a034d8349bbd"/>
            <meta>
                <profile value="https://fhir.hl7.org.uk/STU3/StructureDefinition/CareConnect-Organization-1"/>
            </meta>
            <identifier>
                <system value="https://fhir.nhs.uk/Id/ods-organization-code"/>
                <value value="GP123456"/>
            </identifier>
            <name value="MGP Medical Centre"/>
            <address>
                <line value="1 MGP House, Overtown"/>
                <city value="Leeds"/>
                <postalCode value="LS21 7PA"/>
            </address>
        </Organization>
    </resource>
</entry>

back to top