GP Connect - Access Record HTML

This guidance is under active development by NHS England and content may be added or updated on a regular basis.
Version: This is the current 0.x (DSTU2) version of GP Connect API for building the Access Record: HTML capability only. For other capabilities and specifications, please visit the GP Connect Specifications page.

Referrals

Information on the 'Referrals' HTML view.

Clinical narrative

This is a request for transfer of care or request to provide assessment, treatment or clinical advice on the care a patient.

Purpose

The purpose of this section is to provide details of any referrals to or from other care providers.

Sections and subsections

There is only a single main section for Referrals with no subsections.

Section title

The section title MUST be 'Referrals'.

Date filter

A date filter is applicable for the Referrals section.

Section content banner

Provider message describing at a summary level how they have populated this section.

Table columns

Providers must return all the columns as described in the table below, sorted by Date descending:

Order Name Description Value details
1 Date The date of the referral dd-Mmm-yyyy
2 From Practitioner or Organisation referred from free-text
3 To Practitioner or Organisation referred to free-text
4 Priority The priority of the referral free-text
5 Details Longer human readable details for the referral
  • This MUST include all clinically relevant information about the referral which is not included in the other columns
  • This MUST include the original term text for the main coded item describing the referral, which MUST be the first item
  • Any additional information, such as the free text description of the referral, MUST be separated from the original clinical term by a new line
  • A label SHOULD preface additional information where necessary for reliable interpretation of the information
free-text

HTML view

<div>
   <h1>Referrals</h1>
   <div class="gptransfer-banner">
      <p>
         <!-- GP transfer banner -->
      </p>
   </div>
   <div class="content-banner">
      <p>
         <!-- Content banner -->
      </p>
   </div>
   <div class="date-banner">
      <p>
         <!-- Date banner -->
      </p>
   </div>
   <div class="exclusion-banner">
      <p>
         <!-- Exclusion banner -->
      </p>
   </div>
   <table id="ref-tab">
      <thead>
         <tr>
            <th>Date</th>
            <th>From</th>
            <th>To</th>
            <th>Priority</th>
            <th>Details</th>
         </tr>
      </thead>
      <tbody>
         <tr>
            <!-- the <tr>...</tr> element will repeat for each referral-->
            <td class="date-column">${referral.date}</td>
            <td>${referral.from}</td>
            <td>${referral.to}</td>
            <td>${referral.priority}</td>
            <td>${referral.details}</td>
         </tr>
      </tbody>
   </table>
</div>

Example view

back to top