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.
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
|
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>