Search loading...

API Hub

Explore and Make use of Nationally Defined Messaging APIs

 

Allergies and adverse reactions

Allergies HTML view
Back to Top

Back to Top

Section Code Section Name TPP EMIS Vision Microtest
ALL Allergies and Adverse Reactions Yes Yes1 Yes2 Yes

1 EMIS have indicated that they are including all allergies & sensitivities in the ‘Current Allergies …..’ section.

2 Vision have indicated they don’t record end dates for allergies & sensitivities. Hence, no History view is possible.

Clinical narrative

A reaction to a substance not intended to occur. Allergies are caused by hypersensitivity of the immune system to an external agent

Purpose

The purpose of this section is to provide the clinician with a list of patient allergies to enable safe prescribing and treatment recommendations for a patient.

Sections and subsections

Contains two sections:

Date filter

Date filters are not supported for this section all relevant records shall be returned for the Current and Historic Allergies and Adverse Reactions.

Section content banner

Provider message(s) describing at a summary level how this section has been populated. Provider content messages can be found here.

Current Allergies and Adverse Reactions

Clinical narrative

A reaction to a substance not intended to occur. Allergies are caused by hypersensitivity of the immune system to an external agent

Purpose

The purpose of this section is to provide the clinician with a list of current allergies to enable safe prescribing and treatment recommendations for a patient.

Subsection content banner

Provider messages describing at a summary level how they have populated this subsection can be found here:

Table construction requirements

Providers MUST adhere to the table construction requirements listed below:

  • table header MUST be “Current Allergies and Adverse Reactions”
  • table columns MUST be ordered left-to-right (1..N)
  • table content MUST NOT be truncated

Table columns

Providers MUST return all the columns as described in the table below, ordered by Start Date descending:

Order Name Description Value Details    
1
Start Date The start date of the allergy or adverse reaction dd-Mmm-yyyy
2
Details Longer human readable details for the allergy or adverse reaction free-text

Historical Allergies and Adverse Reactions

Clinical narrative

A reaction to a substance not intended to occur. Allergies are caused by hypersensitivity of the immune system to an external agent.

Purpose

The purpose of this section is to provide the clinician with a list of historical allergies to enable safe prescribing and treatment recommendations for a patient.

Subsection content banner

Provider messages describing at a summary level how they have populated this subsection can be found here:

Table construction requirements

Providers MUST adhere to the table construction requirements listed below:

  • table header MUST be “Historical Allergies and Adverse Reactions”
  • table columns MUST be ordered left-to-right (1..N)
  • table content MUST NOT be truncated

Table columns

Providers MUST return all the columns as described in the table below, date descending ordering MUST be applied (End Date SHOULD be the date field used in the sort):

Order Name Description Value Details    
1
Start Date The start date of the allergy or adverse reaction dd-Mmm-yyyy
2
End Date The end date of the allergy or adverse reaction dd-Mmm-yyyy
3
Details Longer human readable details for the allergy or adverse reaction free-text

HTML view

The following content highlights the expected HTML tags and format providers MUST use when generating the HTML content:

<div>
   <h1>Allergies and Adverse Reactions</h1>
   <div>
      <p>
         <!-- GP transfer banner -->
      </p>
   </div>
   <div>
      <p>
         <!-- Content banner -->
      </p>
   </div>
   <div>
      <h2>Current Allergies and Adverse Reactions</h2>
      <div>
         <p>
            <!-- Content banner -->
         </p>
      </div>
      <div>
         <p>
            <!-- Exclusion banner -->
         </p>
      </div>
      <table>
         <thead>
            <tr>
               <th>Start Date</th>
               <th>Details</th>
            </tr>
         </thead>
         <tbody>
            <tr>
               <!-- the <tr>...</tr> element will repeat for each current allergy and adverse reaction-->
               <td>{{allergyadversereaction.startdate}}</td>
               <td>{{allergyadversereaction.details}}</td>
            </tr>
         </tbody>
      </table>
   </div>
   <div>
      <h2>Historical Allergies and Adverse Reactions</h2>
      <div>
         <p>
            <!-- Content banner -->
         </p>
      </div> 
	  <div>
         <p>
            <!-- Exclusion banner -->
         </p>
      </div>
      <table>
         <thead>
            <tr>
               <th>Start Date</th>
               <th>End Date</th>
               <th>Details</th>
            </tr>
         </thead>
         <tbody>
            <tr>
               <!-- the <tr>...</tr> element will repeat for each historical allergy and adverse reaction-->
               <td>{{allergyadversereaction.startdate}}</td>
               <td>{{allergyadversereaction.enddate}}</td>
               <td>{{allergyadversereaction.details}}</td>
            </tr>
         </tbody>
      </table>
   </div>
</div>

All content is available under the Open Government Licence v3.0, except where otherwise stated