FHIR Release 3 (STU) CI-Build

This page is part of the FHIR Specification (v3.0.2: STU 3). The current version which supercedes this version is 5.0.0 . For a full list Continuous Integration Build of available versions, see FHIR (will be incorrect/inconsistent at times).
See the Directory of published versions . Page versions: R5 R4B R4 R3

Bundle-request-simplesummary.xml

Example Bundle/bundle-request-simplesummary (XML)

Maturity Level : N/A
Responsible Owner: FHIR Infrastructure Work Group Ballot Standards Status : Informative Compartments : Not linked to any No defined compartments

Raw XML ( canonical form + also see XML Format Specification )

Retrieve a patient’s conditions, a patient’s conditions, medication statements and blood pressure readings since a given date (id = "bundle-request-simplesummary")

<!-- This bundle is a batch of reqests to the FHIR RESTful API This particuar batch requests a simple summary for a patient It includes the patient's basic demographics (via the Patient resource), conditions, medication statements and blood pressure readings since January 1, 2015 -->
<?xml version="1.0" encoding="UTF-8"?>


  <!--   Each entry is used to represent a RESTful API request
       This request retrieves a single Patient resource   -->
  
    
      
      
    
  
  
  
    
      
      
    
  
  <!--   This request will retrieve the MedicationStatements for the patient
       requested above   -->
  
    
      
      
    
  
  <!--   This request will retrieve blood pressure readings for the
       patient taken since January 1, 2015   -->
  
    
      
      
    
  

<Bundle xmlns="http://hl7.org/fhir">
  <id value="bundle-request-simplesummary"/> 
  <!--   This bundle is a batch of reqests to the FHIR RESTful API
       This particuar batch requests a simple summary for a patient
       It includes the patient's basic demographics (via the Patient resource),
       conditions, medication statements and blood pressure readings since
       January 1, 2015   -->
  <type value="batch"/>   <!--   Each entry is used to represent a RESTful API request
       This request retrieves a single Patient resource   -->
  <entry>     <request>       <method value="GET"/>       <url value="/Patient/example"/>     </request>   </entry>   <!--   This request will retrieve the conditions for the patient   -->  <entry>     <request>       <method value="GET"/>       <url value="/Condition?patient=example"/>     </request>   </entry>   <!--   This request will retrieve the MedicationStatements for the patient
       requested above   -->
  <entry>     <request>       <method value="GET"/>       <url value="/MedicationStatement?patient=example"/>     </request>   </entry>   <!--   This request will retrieve blood pressure readings for the
       patient taken since January 1, 2015   -->
  <entry>     <request>       <method value="GET"/>       <url value="/Observation?patient=example&amp;code=http://loinc.org|55284-4&amp;date=ge2015-01-01"/>     </request>   </entry> 


</

Bundle

>



Usage note: every effort has been made to ensure that the examples are correct and useful, but they are not a normative part of the specification.