Section code | Section name | TPP | EMIS | Vision | Microtest |
---|---|---|---|---|---|
CLI | Clinical Items | Yes | Yes | Yes | Yes |
Clinical narrative
Items of information relating to the care, health or wellbeing of the patient. Examples of this type of information are: childhood and travel vaccinations, screening information and past medical history. It does not include administrative items such as invitations for health-related information.
Purpose
The purpose of supplying clinical items within GP Connect is to allow a clinician to view a history of items relating to the health and wellbeing of a patient.
Sections and subsections
There is a single main section for clinical items with no subsections.
Section title
The section title MUST be ‘Clinical Items’.
Date filter
A date filter is applicable for the Clinical Items 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 |
---|---|---|---|
Date |
The date of entry of the clinical item | dd-Mmm-yyyy |
|
Entry |
A short human readable title for the clinical item | free-text |
|
Details |
Longer human readable details for the clinical item | free-text |
HTML view
<div>
<h1>Clinical Items</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="cli-tab">
<thead>
<tr>
<th>Date</th>
<th>Entry</th>
<th>Details</th>
</tr>
</thead>
<tbody>
<tr>
<!-- the <tr>...</tr> element will repeat for each clinical item-->
<td class="date-column">{{item.date}}</td>
<td>{{item.entry}}</td>
<td>{{item.details}}</td>
</tr>
</tbody>
</table>
</div>
Example view
See the Pen clinical items by gp_connect (@tford70) on CodePen.