• API Hub
  • Search loading...

    API Hub

    Explore and Make use of Nationally Defined Messaging APIs

     

    Allergies and Adverse Reactions

    Allergies HTML View.

    Allergies and Adverse Reactions

    Section Code Section Name TPP EMIS INPS 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 INPS have indicated they don’t record end dates for allergies & sensitivities. Hence, no History view is possible.

    Contains two sections:

    Section Banner Content Message

    Provider Message
    EMIS Display “All Allergies listed in Current section”
    TPP  
    INPS Display “All Allergies listed in Current section”
    Microtest  

    Current Allergies and Adverse Reactions

    Purpose

    A list of current allergies and adverse reactions related to a patient ordered by date descending (i.e. most recent date/time first).

    Date Horizon

    All relevant records SHALL be returned (i.e. no time limit/filtering is to be applied).

    Table Construction

    • Table header SHALL be “Current Allergies and Adverse Reactions”.
    • Table columns SHALL be ordered left-to-right (1..N).
    • Table content SHALL NOT be truncated.
    • Table rows SHALL be ordered by start date descending (i.e. most recent date/time first).

    Table Columns

    1. Start Date
      • the start date of the allergy or sensitivity.
    2. Details
      • longer human readable free-text details for the allergy or sensitivity.

    HTML View

    <div>
    	<h2>Current Allergies and Adverse Reactions</h2>
    	<table>
    		<thead>
    			<tr>
    				<th>Start Date</th>
    				<th>Details</th>
    			</tr>
    		</thead>
    		<tbody>
    			<tr ng-repeat="item in items">
    				<td>{{item.start}}</td>
    				<td>{{item.details}}</td>
    			</tr>
    		</tbody>
    	</table>
    </div>
    

    Historical Allergies and Adverse Reactions

    Purpose

    A list of historical allergies and adverse reactions related to a patient ordered by date descending (i.e. most recent date/time first).

    Date Horizon

    All relevant records SHALL be returned (i.e. no time limit/filtering is to be applied).

    Table Construction

    • Table header SHALL be “Historical Allergies and Adverse Reactions”.
    • Table columns SHALL be ordered left-to-right (1..N).
    • Table content SHALL NOT be truncated.
    • Table rows SHALL be ordered by start date descending (i.e. most recent date/time first).

    Table Columns

    1. Start Date
      • the start date of the allergy or adverse reaction.
    2. End Date
      • the end date of the allergy or adverse reaction.
    3. Details
      • longer human readable free-text details for the allergy or adverse reaction.

    HTML View

    <div>
    	<h2>Historical Allergies and Adverse Reactions</h2>
    	<table>
    		<thead>
    			<tr>
    				<th>Start Date</th>
    				<th>End Date</th>
    				<th>Details</th>
    			</tr>
    		</thead>
    		<tbody>
    			<tr ng-repeat="item in items">
    				<td>{{item.start}}</td>
    				<td>{{item.end}}</td>
    				<td>{{item.details}}</td>
    			</tr>
    		</tbody>
    	</table>
    </div>
    

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