• API Hub
  • Search loading...

    API Hub

    Explore and Make use of Nationally Defined Messaging APIs

     

    Observations

    Observations HTML View.

    Observations

    Section Code Section Name TPP EMIS INPS Microtest
    OBS Observations Yes Yes Yes Yes

    Purpose

    A list of all observations related to a patient ordered by date descending (i.e. most recent date/time first).

    Date Horizon

    All relevant records SHALL be returned with-in Consumer supplied date range.

    Table Construction

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

    Table Columns

    1. Date
      • the date of observation.
    2. Entry
      • a short human readable free-text title for the observation.
    3. Value (and Range where available)
    4. Details
      • longer human readable free-text details for the observation.

    HTML View

    <div>
    	<h2>Observations</h2>
    	<table>
    		<thead>
    			<tr>
    				<th>Date</th>
    				<th>Entry</th>
    				<th>Value</th>
    				<th>Details</th>
    			</tr>
    		</thead>
    		<tbody>
    			<tr ng-repeat="item in items">
    				<td>{{item.date}}</td>
    				<td>{{item.entry}}</td>
    				<td>{{item.value}}</td>
    				<td>{{item.details}}</td>
    			</tr>
    		</tbody>
    	</table>
    </div>
    

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