Example to illustrate a batch get bundle

Table View

Bundle.id[0]UKCore-Bundle-Batch-Example
Bundle.type[0]batch
Bundle.entry[0].request[0].method[0]GET
Bundle.entry[0].request[0].url[0]https://fhir.hl7.org.uk/Patient/UKCore-Patient-RichardSmith-Example
Bundle.entry[1].request[0].method[0]GET
Bundle.entry[1].request[0].url[0]https://fhir.hl7.org.uk/Condition?UKCore-Patient-RichardSmith-Example
Bundle.entry[2].request[0].method[0]GET
Bundle.entry[2].request[0].url[0]https://fhir.hl7.org.uk/MedicationStatement?UKCore-Patient-RichardSmith-Example

XML View

<Bundle xmlns="http://hl7.org/fhir">
<id value="UKCore-Bundle-Batch-Example" />
<type value="batch" />
<method value="GET" />
<url value="https://fhir.hl7.org.uk/Patient/UKCore-Patient-RichardSmith-Example" />
</request>
</entry>
<method value="GET" />
<url value="https://fhir.hl7.org.uk/Condition?UKCore-Patient-RichardSmith-Example" />
</request>
</entry>
<method value="GET" />
<url value="https://fhir.hl7.org.uk/MedicationStatement?UKCore-Patient-RichardSmith-Example" />
</request>
</entry>
</Bundle>

JSON View

{
"resourceType": "Bundle",
"id": "UKCore-Bundle-Batch-Example",
"type": "batch",
"entry": [
{
"request": {
"method": "GET",
"url": "https://fhir.hl7.org.uk/Patient/UKCore-Patient-RichardSmith-Example"
}
},
{
"request": {
"method": "GET",
"url": "https://fhir.hl7.org.uk/Condition?UKCore-Patient-RichardSmith-Example"
}
},
{
"request": {
"method": "GET",
"url": "https://fhir.hl7.org.uk/MedicationStatement?UKCore-Patient-RichardSmith-Example"
}
}
]
}