Wednesday, 3 September 2014

#FHIR Enabling Client Side Web Form Automation

Using a #FHIR server from client side Javascript provides a simple and effective way to obtain data from healthcare information systems to allow population of existing forms from local system data or retrieval of FHIR resource based data for submission.  

In this short animation one can see a local clinical information system (left) and a rough and ready browser based web application (right).  On the local machine a FHIR server is running giving access to the current context (patient being viewed in the clinical information system) and providing search to allow the retrieval of data for resources in this case Patient (for administration) and Condition, Procedure, MedicationPrescription, AdverseReaction (for a health summary). 

Here we can see how the web application can access the local record to populate a patient registration form on the client side and also how a health summary can be similarly obtained.  These can then be submitted to the web application - a whole lot more appealing (and accurate) than filling in things by hand! Of course the real benefit comes when there is broad support for FHIR interfacing across multiple suppliers of healthcare information systems. It is a short step from a retro-fit of existing form entry to the server accepting FHIR data and ideally implementing a standardised messaging endpoint (mailbox) or server (create/update).




Accessing the local system health record is achieved using Javascript; with minimal scripting it is possible to populate an existing web form based on data retrieved from the local FHIR server in JSON format. (The current patient id is obtained from another call to the FHIR server for that purpose)

function LoadConsumer() {
        $.ajax({
            url: "http://localhost:8190/Patient/" + patientId + "?format=json",
            type: 'GET',
            success: function (data, status, jqxhr) {
                var text = jqxhr.responseText;
                //$("#output").text(text);
              
                var data = jQuery.parseJSON(text);

                $("#FamilyName").val(data.name[0].family[0]);
           
                $("#GivenName").val(data.name[0].given[0]);

                $("#Sex").val(data.gender.coding[0].code);

                var bits = data.birthDate.split(/[-]/g);
                $("#DateOfBirth").val(bits[2] + '/' + bits[1] + '/' + bits[0]);
            },
            error: function (xhr, ajaxOptions, thrownError) {
                if (thrownError == "")
                    thrownError = "Not responding";
            }
        });
    }

This populates the form (produced from a .NET MVC application):

<form action="/" method="post">
   <table>
      <tr>
         <td>Family Name</td>
         <td>
            <input id="FamilyName" name="FamilyName" type="text" value="" />
         </td>
      </tr>
      <tr>
         <td>Given Name</td>
         <td><input id="GivenName" name="GivenName" type="text" value="" /></td>
      </tr>
      <tr>
         <td>Date of Birth</td>
         <td><input data-val="true" data-val-required="The DateOfBirth field is required." id="DateOfBirth" name="DateOfBirth" type="text" value="" />
         </td>
      </tr>
      <tr>
         <td>Sex</td>
         <td>
            <select id="Sex" name="Sex">
               <option value=""></option>
               <option value="M">Male</option>
               <option value="F">Female</option>
            </select>
         </td>
      </tr>
   </table>
   <button name="Submit" type="submit" value="save">Register</button>
</form>

So that is it.  FHIR server availability on a local systems can enable a generalised automation of population for existing web based forms with some minimal Javascript glue. Give it a try!


Thursday, 15 May 2014

Oridashi #FHIR Servers Demo Rework

Revamped site for Oridashi-Hiasobi servers demonstration (+ whole Oridashi site) is now up and running.

Check out fhir.oridashi.com.au for live demonstrator calling Oridashi-Hiasobi servers direct with Javascript from the page. This includes:

  • ability to set xml or json return formats
  • has a set of samples searches
  • results of search are loaded on screen.
  • click 'See MD' or 'See BP' to switch between servers
Of course the base demo servers are still available for direct use.

Let me know if there are any issues.

Tuesday, 13 May 2014

#FHIR Connectathon 6 + population metrics

Population metrics play app for HL7 FHIR Connectathon 6 is now online http://demo.oridashi.com.au:8200/fhirpop - feel free to have a play; if you would like your server added let me know the details.


It lets you pick one of 8 online demo servers from the FHIR implementers' community (on the right) and then obtain a population metric chart for that repository.  e.g

Demographics Chart - sex/age breakdown

 Disease Prevalence - top 10 most common current disease conditions

Smoking Status - population stats on cigarette smoking records



There is also a little 'Search by Name' page for any of the servers (link top right).

Sunday, 2 March 2014

#FHIR Cook until Tender

Long time no post - product perspective takes hold.  As FHIR reaches DSTU commercial reality comes into play.  From the start I have been looking at FHIR as an implementation solution to provide a building block in solving the need for a common access model for primary care systems in Australia - Hiasobi is my product to achieve that.

Business tenders come across my plate every so often that need a solution to data access in a way that works well for integrators without the major effort of corporate wooing of mostly disinterested clinical system vendors. Based on previous escapades in providing interfacing for primary care systems with CDA and VMR for various projects including connecting to the national PCEHR (Personally Controlled Electronic Health Record), point-to-point messaging and decision support services it has all come to this point - "need for cost-effective integration products".

Nothing like responding to a tender request to really clarify what you do and don't do and what a prospective customer might actually need.  A few things really stand out in my mind with the process of presenting FHIR as the basis of a solution.

a) "There are the specs - go ahead and read them" - the specification is open, I can give folks the URL and say take a look.  No 3 day course on the RIM, I don't need to hold their hand  - they can read it and understand it; even folks that don't really know what HL7 and standards are about.
b) "Phew DSTU" - those 4 letters make a great deal of difference, it is a draft standard for trial use i.e. good enough to use in anger and locked in enough to rely on.  Ever won a tender with 'it should be a DSTU soon' - it makes me nervous as change with a live customer is costly.
c) "FHIR Community - you're in it" - Using FHIR brings you into an active and friendly implementer crowd; they happen to also be a 'standards' crowd, but really these folks are the ones making it work rather than talking about how we might make it work.  It is also quite appealing doing this in Melbourne -"oh yeah, the guy that kicked off all this FHIR stuff is a bit north of town".  I can't help being lucky - Melbourne is a nice place to live; I recommend it for anyone keen on FHIR ;)

"Hiasobi" (General Practice FHIR Suite) is now an active product:

If you would like to talk FHIR with Australian primary care systems contact me email brett.esler@oridashi.com.au or skype brett.esler - "free the data"




Tuesday, 7 January 2014

#FHIR towards DSTU

Happy new year.

As we kick off 2014 the FHIR standards have moved to the DSTU candidate version 0.12.

My public services have been updated to align with changes; If you do decide to play let me know if you find any holes with my v0.12 updates.

As part of the updates in this round some more features have been added these include:

Deleted resource in history atom feed
In the system history bundle deletion is now supported.  This allows resources that have been deleted to be represented in the history feed.  For example deletion of a Condition resource:

<deleted-entry xmlns="http://purl.org/atompub/tombstones/1.0"
  ref="http://localhost:8190/condition/253" when="2013-12-02T12:36:04Z" />


This allows synchronisation of resources using atom based pub/sub as per function HL7 EHR Functional Model IN 2.3 Synchronization.

Metadata includes supported search-type elements
Some improvements also have been made to the metadata call which returns a server's conformance statement as a conformance resource instance.  This now includes all standard search parameters supported for each resource.  For example for the Condition resource the _id, code, subject and status search parameters are supported:

<resource>
      <type value="Condition" />
      <operation>
        <code value="read" />
      </operation>
      <operation>
        <code value="search-type" />
      </operation>
      <readHistory value="false" />
      <searchInclude value="Condition.subject" />
      <searchParam>
        <name value="_id" />
        <type value="token" />
      </searchParam>
      <searchParam>
        <name value="code" />
        <type value="token" />
      </searchParam>
      <searchParam>
        <name value="subject" />
        <type value="reference" />
      </searchParam>
      <searchParam>
        <name value="status" />
        <type value="token" />
      </searchParam>
 </resource>

Along with these new search parameter definitions there are other resource level conformance definitions:

  • Resource level operations supported (operation) are in this case read (read the current state of the resource), and search-type (search the resource type based on some filter criteria).
  • Currently readHistory is not supported for a specific resource type - as indicated  
      <readHistory value="false" /> 
    this will soon be implemented ;) allowing a by-resource history feed.
  • There is also a searchInclude element specified which defines which resources associated with this type may be included on a search. For Condition resource the subject (Patient) can be included with the _include search parameter.

Profiles are next - to define details of terminology bindings and extension definitions.

Extensions to Patient resource
As part of my scope of interest a couple of resource extensions have been added:
- ethnicity:  commonly implemented Australian administrative coding of aboriginality; from National Health Data Dictionary
- age: useful value when my server is switched to 'de-identified' mode; no specific date of birth supplied (no names and person identifiers either) e.g.

        <extension url="http://oridashi.com.au/fhir/extension/age">
          <valueQuantity>
            <value value="10" />
            <units value="a" />
          </valueQuantity>
        </extension>
        <extension url="http://oridashi.com.au/fhir/extension/ethnicity">
          <valueCoding>
            <system value="http://oridashi.com.au/system/nhdd/ethnicity" />
            <code value="1" />
            <display value="Aboriginal" />
          </valueCoding>
        </extension>

These will be the subject of my conformance profile definitions in the near future.

Server 3 'zedmed' cis languishes a little behind resource content wise but can be accessed on demo.oridashi.com.au:8192 if you dare.

Servers launch page has been updated to 0.12 also going through a set of basic read and search examples.

Until next time free the data

Thursday, 21 November 2013

#FHIR Connectathon 4.5

At the end of last month it was my great pleasure to attend the IHIC 2013 FHIR Connectathon - out of cycle, this took place in Sydney Australia.  This was the first FHIR connectathon I have attended in person and it was both great fun and also a great learning experience.  The benefits of working on implementations with a group of folks ready to discuss and explore issues is incredibly rewarding both in benefits to my implementations but also the community building that carries on beyond the event itself.

With a large Australian showing there were a number of participants that came to the connectathon with their own systems or even a blank slate and some preliminary reading and left with working implementations communicating with other participants.

I was working on my GP wrapper services and along with Grahame Grieve's server and pub/sub tools reached the point of automatic submissions to the HL7Connect server based on the clinical system record FHIR history.  Some real progress in a short space of time.

The other thing I was playing with were some basic population health metrics collected and processed by connection to existing FHIR servers. This use without any specific point-to-point arrangements made with the server vendors.  Here are some samples for 7 servers all with demographics charts and  a couple with smoking status.


Definitely the (geeky) highlight was the demo of Brian Postlethwaite's (DCA) windows phone application searching for patients and providing summaries across multiple FHIR servers.  Phil Wilford's (NEHTA) live adhoc update of his patient details with his newly crafted FHIR client and being able to see changes on the windows phone was met by spontaneous applause.  This is the stuff that old integration folks appreciate, it just works, I just saw it work....

Ballot resolutions to deal with for the next connectathon - should be fun; no really; I am looking forward to it.

FHIR free the data...







Monday, 7 October 2013

#FHIR Connectathon 4

Need  to post about FHIR connectathon 4.... 

I had a great time at Connectathon 4 even though I wasn't there in person.  A few observations; 
  • lots of attendees - will need a bigger room next time
  • heaps of clients - the FHIR clients crowd turned out in force many more than Connectathon 3
Whilst I wasn't in the room there was plenty of action testing and fixing various aspects of my servers.

I managed a good deal of fixing up little issues with compatibility and getting my conformance resources sorted out a little further.

There was a lot of value in building my own little command line copy tool that built transactions based on extracted data from my servers and posted them to some of the reference servers.  Part of doing this is making the choice of trying provide identifiers for all resources to use in the server or a 'transient id' which will be replaced in the server.

For clarity, when the client intends a resource to have a transient identity that the server must replace, it should use a cid: url on the resource - that is, a url with the scheme "cid:"per RFC 2392

To do this in a transaction just ensure all cross references are maintained consistently and the server will process  the resources as a bundle and store them on the server.  The server will assign resource ids and return a bundle of it's own showing the resultant resources created.

For example transaction sent with various resource type and responses for Health Intersections and Spark - Furore servers; the highlighted resource identifiers and references have been processed by the servers and returned in the response.

Oridashi SNAP-FHIR (Post)

<feed xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2005/Atom">
   <author>
      <name>Oridashi SNAP-FHIR</name>
   </author>
   <id>urn:uuid:d4b99f70-677f-415d-a234-9e0787724a2a</id>
   <title>Bundle Patient [36]</title>
   <updated>2013-10-07T05:29:31Z</updated>
   <entry>
      <id>cid:patient-36</id>
      <title>patient[36]</title>
      <updated>2013-05-04T03:24:11Z</updated>
      <content type="text/xml">
         <Patient xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Ahern,Jason (Male 37y)</p>
               </div>
            </text>
            <identifier>
               <use value="official"/>
               <label value="Medicare Number"/>
               <system value="http://oridashi.com.au/system/id/medicare"/>
               <key value="35001582843"/>
            </identifier>
            <identifier>
               <use value="official"/>
               <label value="Pensioner Number"/>
               <system value="http://oridashi.com.au/system/id/pensioner"/>
               <key value="HG-123-432-SS"/>
            </identifier>
            <name>
               <use value="official"/>
               <family value="Ahern"/>
               <given value="Jason"/>
               <given value="Patrick"/>
            </name>
            <telecom>
               <system value="phone"/>
               <value value="0349788795"/>
               <use value="home"/>
            </telecom>
            <telecom>
               <system value="email"/>
               <value value="j.ahern@oridashi.com.au"/>
               <use value="home"/>
            </telecom>
            <gender>
               <coding>
                  <system value="http://hl7.org/fhir/sid/v2-0001"/>
                  <code value="M"/>
               </coding>
            </gender>
            <birthDate value="1976-05-31"/>
            <deceasedBoolean value="false"/>
            <address>
               <use value="home"/>
               <line value="17 Seymore Ave"/>
               <city value="Bentleigh"/>
               <zip value="3204"/>
            </address>
            <provider>
               <type value="Organization"/>
               <reference value="cid:organization-1"/>
            </provider>
            <active value="true"/>
         </Patient>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Ahern,Jason (Male 37y)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:organization-1</id>
      <title>organization[1]</title>
      <updated>2012-08-03T12:14:31Z</updated>
      <content type="text/xml">
         <Organization xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Main surgery</p>
               </div>
            </text>
            <name value="Main surgery"/>
            <telecom>
               <system value="phone"/>
               <value value="0744444444"/>
               <use value="work"/>
            </telecom>
            <telecom>
               <system value="fax"/>
               <value value="0744444445"/>
               <use value="work"/>
            </telecom>
            <address>
               <use value="work"/>
               <line value="1 Best Avenue"/>
               <city value="Practiceland"/>
               <zip value="4001"/>
            </address>
            <active value="true"/>
         </Organization>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Main surgery</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:condition-246</id>
      <title>condition[246]</title>
      <updated>2013-08-02T16:07:15Z</updated>
      <content type="text/xml">
         <Condition xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-08-02 Diabetes Mellitus, Type 2</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="cid:patient-36"/>
            </subject>
            <code>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="778"/>
                  <display value="Diabetes Mellitus, Type 2"/>
               </coding>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="44054006"/>
                  <display value="Diabetes Mellitus, Type 2"/>
               </coding>
            </code>
            <category>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="439401001"/>
                  <display value="Diagnosis"/>
               </coding>
            </category>
            <status value="confirmed"/>
            <onsetDate value="2013-08-02"/>
            <abatementBoolean value="false"/>
         </Condition>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-08-02 Diabetes Mellitus, Type 2</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:procedure-239</id>
      <title>procedure[239]</title>
      <updated>2013-05-28T13:01:43Z</updated>
      <content type="text/xml">
         <Procedure xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-05-28 Wart removal</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="cid:patient-36"/>
            </subject>
            <type>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="2966"/>
                  <display value="Wart removal"/>
               </coding>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="303238005"/>
                  <display value="Wart removal"/>
               </coding>
            </type>
            <date>
               <start value="2013-05-28"/>
            </date>
         </Procedure>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-05-28 Wart removal</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:medicationprescription-87</id>
      <title>medicationprescription[87]</title>
      <updated>2013-08-07T00:40:52Z</updated>
      <content type="text/xml">
         <MedicationPrescription xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
               </div>
            </text>
            <dateWritten value="2013-08-02"/>
            <status value="active"/>
            <patient>
               <type value="Patient"/>
               <reference value="cid:patient-36"/>
            </patient>
            <prescriber>
               <type value="Practitioner"/>
               <reference value="cid:practitioner-1"/>
            </prescriber>
            <reasonForPrescribingCodeableConcept>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="753"/>
                  <display value="Confusion"/>
               </coding>
            </reasonForPrescribingCodeableConcept>
            <medication>
               <type value="Medication"/>
               <reference value="cid:medication-2175"/>
               <display value="Diazepam 2mg Tablet"/>
            </medication>
            <dosageInstruction>
               <dosageInstructionsText value="1 Daily"/>
            </dosageInstruction>
         </MedicationPrescription>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:medication-2175</id>
      <title>medication[2175]</title>
      <updated>2010-06-29T00:00:00Z</updated>
      <content type="text/xml">
         <Medication xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Diazepam 2mg Tablet</p>
               </div>
            </text>
            <name value="Diazepam 2mg"/>
            <code>
               <text value="Diazepam 2mg"/>
            </code>
            <product>
               <form>
                  <text value="Tablet"/>
               </form>
            </product>
         </Medication>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Diazepam 2mg Tablet</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:practitioner-1</id>
      <title>practitioner[1]</title>
      <updated>2012-03-08T16:05:09Z</updated>
      <content type="text/xml">
         <Practitioner xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Findacure, Frederick</p>
               </div>
            </text>
            <identifier>
               <use value="official"/>
               <label value="Provider Number"/>
               <system value="http://oridashi.com.au/system/id/providernumber"/>
               <key value="*******"/>
            </identifier>
            <identifier>
               <use value="official"/>
               <label value="Prescriber Number"/>
               <system value="http://oridashi.com.au/system/id/prescribernumber"/>
               <key value="*******"/>
            </identifier>
            <name>
               <family value="Findacure"/>
               <given value="Frederick"/>
            </name>
            <organization>
               <type value="Organization"/>
               <reference value="cid:organization-1"/>
            </organization>
            <role>
               <coding>
                  <system value="http://hl7.org/fhir/practitioner-role"/>
                  <code value="doctor"/>
               </coding>
            </role>
         </Practitioner>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Findacure, Frederick</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:adversereaction-14</id>
      <title>adversereaction[14]</title>
      <updated>2013-09-22T02:34:11Z</updated>
      <content type="text/xml">
         <AdverseReaction xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Bee stings - Rash (minor)</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="cid:patient-36"/>
            </subject>
            <didNotOccurFlag value="false"/>
            <symptom>
               <code>
                  <text value="Rash"/>
               </code>
               <severity value="minor"/>
            </symptom>
         </AdverseReaction>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Bee stings - Rash (minor)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <id>cid:immunization-92</id>
      <title>immunization[92]</title>
      <updated>2013-09-22T02:33:48Z</updated>
      <content type="text/xml">
         <Immunization xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-09-22 ADT</p>
               </div>
            </text>
            <date value="2013-09-22"/>
            <vaccineType>
               <text value="ADT"/>
            </vaccineType>
            <subject>
               <type value="Patient"/>
               <reference value="cid:patient-36"/>
            </subject>
            <refusedIndicator value="false"/>
            <reported value="false"/>
         </Immunization>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-09-22 ADT</p>
         </div>
      </summary>
   </entry>
</feed>


Spark Furore (Response)

<feed xmlns="http://www.w3.org/2005/Atom">
   <title type="text">Batch operation result for batch urn:uuid:d4b99f70-677f-415d-a234-9e0787724a2a</title>
   <id>urn:uuid:6a2ca668-1dcd-413a-bf55-9893b8543079</id>
   <updated>2013-10-07T05:42:30.4703952Z</updated>
   <author>
      <name>Oridashi SNAP-FHIR</name>
   </author>
   <link rel="self" href="http://spark.furore.com/fhir"/>
   <entry>
      <title type="text">patient[36]</title>
      <id>http://spark.furore.com/fhir/patient/@10004</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/patient/@10004/history/@1347"/>
      <content type="text/xml">
         <Patient xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Ahern,Jason (Male 37y)</p>
               </div>
            </text>
            <identifier>
               <use value="official"/>
               <label value="Medicare Number"/>
               <system value="http://oridashi.com.au/system/id/medicare"/>
               <key value="35001582843"/>
            </identifier>
            <identifier>
               <use value="official"/>
               <label value="Pensioner Number"/>
               <system value="http://oridashi.com.au/system/id/pensioner"/>
               <key value="HG-123-432-SS"/>
            </identifier>
            <name>
               <use value="official"/>
               <family value="Ahern"/>
               <given value="Jason"/>
               <given value="Patrick"/>
            </name>
            <telecom>
               <system value="phone"/>
               <value value="0349788795"/>
               <use value="home"/>
            </telecom>
            <telecom>
               <system value="email"/>
               <value value="j.ahern@oridashi.com.au"/>
               <use value="home"/>
            </telecom>
            <gender>
               <coding>
                  <system value="http://hl7.org/fhir/sid/v2-0001"/>
                  <code value="M"/>
               </coding>
            </gender>
            <birthDate value="1976-05-31"/>
            <deceasedBoolean value="false"/>
            <address>
               <use value="home"/>
               <line value="17 Seymore Ave"/>
               <city value="Bentleigh"/>
               <zip value="3204"/>
            </address>
            <provider>
               <type value="Organization"/>
               <reference value="organization/@10005"/>
            </provider>
            <active value="true"/>
         </Patient>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Ahern,Jason (Male 37y)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">organization[1]</title>
      <id>http://spark.furore.com/fhir/organization/@10005</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/organization/@10005/history/@1348"/>
      <content type="text/xml">
         <Organization xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Main surgery</p>
               </div>
            </text>
            <name value="Main surgery"/>
            <telecom>
               <system value="phone"/>
               <value value="0744444444"/>
               <use value="work"/>
            </telecom>
            <telecom>
               <system value="fax"/>
               <value value="0744444445"/>
               <use value="work"/>
            </telecom>
            <address>
               <use value="work"/>
               <line value="1 Best Avenue"/>
               <city value="Practiceland"/>
               <zip value="4001"/>
            </address>
            <active value="true"/>
         </Organization>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Main surgery</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">condition[246]</title>
      <id>http://spark.furore.com/fhir/condition/@10006</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/condition/@10006/history/@1349"/>
      <content type="text/xml">
         <Condition xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-08-02 Diabetes Mellitus, Type 2</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="patient/@10004"/>
            </subject>
            <code>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="778"/>
                  <display value="Diabetes Mellitus, Type 2"/>
               </coding>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="44054006"/>
                  <display value="Diabetes Mellitus, Type 2"/>
               </coding>
            </code>
            <category>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="439401001"/>
                  <display value="Diagnosis"/>
               </coding>
            </category>
            <status value="confirmed"/>
            <onsetDate value="2013-08-02"/>
            <abatementBoolean value="false"/>
         </Condition>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-08-02 Diabetes Mellitus, Type 2</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">procedure[239]</title>
      <id>http://spark.furore.com/fhir/procedure/@10019</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/procedure/@10019/history/@1362"/>
      <content type="text/xml">
         <Procedure xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-05-28 Wart removal</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="patient/@10004"/>
            </subject>
            <type>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="2966"/>
                  <display value="Wart removal"/>
               </coding>
               <coding>
                  <system value="http://snomed.info/id"/>
                  <code value="303238005"/>
                  <display value="Wart removal"/>
               </coding>
            </type>
            <date>
               <start value="2013-05-28"/>
            </date>
         </Procedure>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-05-28 Wart removal</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">medicationprescription[87]</title>
      <id>http://spark.furore.com/fhir/medicationprescription/@10022</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/medicationprescription/@10022/history/@1365"/>
      <content type="text/xml">
         <MedicationPrescription xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
               </div>
            </text>
            <dateWritten value="2013-08-02"/>
            <status value="active"/>
            <patient>
               <type value="Patient"/>
               <reference value="patient/@10004"/>
            </patient>
            <prescriber>
               <type value="Practitioner"/>
               <reference value="practitioner/@10024"/>
            </prescriber>
            <reasonForPrescribingCodeableConcept>
               <coding>
                  <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
                  <code value="753"/>
                  <display value="Confusion"/>
               </coding>
            </reasonForPrescribingCodeableConcept>
            <medication>
               <type value="Medication"/>
               <reference value="medication/@10023"/>
               <display value="Diazepam 2mg Tablet"/>
            </medication>
            <dosageInstruction>
               <dosageInstructionsText value="1 Daily"/>
            </dosageInstruction>
         </MedicationPrescription>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">medication[2175]</title>
      <id>http://spark.furore.com/fhir/medication/@10023</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/medication/@10023/history/@1366"/>
      <content type="text/xml">
         <Medication xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Diazepam 2mg Tablet</p>
               </div>
            </text>
            <name value="Diazepam 2mg"/>
            <code>
               <text value="Diazepam 2mg"/>
            </code>
            <product>
               <form>
                  <text value="Tablet"/>
               </form>
            </product>
         </Medication>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Diazepam 2mg Tablet</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">practitioner[1]</title>
      <id>http://spark.furore.com/fhir/practitioner/@10024</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/practitioner/@10024/history/@1367"/>
      <content type="text/xml">
         <Practitioner xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Findacure, Frederick</p>
               </div>
            </text>
            <identifier>
               <use value="official"/>
               <label value="Provider Number"/>
               <system value="http://oridashi.com.au/system/id/providernumber"/>
               <key value="*******"/>
            </identifier>
            <identifier>
               <use value="official"/>
               <label value="Prescriber Number"/>
               <system value="http://oridashi.com.au/system/id/prescribernumber"/>
               <key value="*******"/>
            </identifier>
            <name>
               <family value="Findacure"/>
               <given value="Frederick"/>
            </name>
            <organization>
               <type value="Organization"/>
               <reference value="organization/@10005"/>
            </organization>
            <role>
               <coding>
                  <system value="http://hl7.org/fhir/practitioner-role"/>
                  <code value="doctor"/>
               </coding>
            </role>
         </Practitioner>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Findacure, Frederick</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">adversereaction[14]</title>
      <id>http://spark.furore.com/fhir/adversereaction/@10027</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/adversereaction/@10027/history/@1370"/>
      <content type="text/xml">
         <AdverseReaction xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>Bee stings - Rash (minor)</p>
               </div>
            </text>
            <subject>
               <type value="Patient"/>
               <reference value="patient/@10004"/>
            </subject>
            <didNotOccurFlag value="false"/>
            <symptom>
               <code>
                  <text value="Rash"/>
               </code>
               <severity value="minor"/>
            </symptom>
         </AdverseReaction>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>Bee stings - Rash (minor)</p>
         </div>
      </summary>
   </entry>
   <entry>
      <title type="text">immunization[92]</title>
      <id>http://spark.furore.com/fhir/immunization/@10028</id>
      <updated>2013-10-07T05:42:29.6123567Z</updated>
      <link rel="self" href="http://spark.furore.com/fhir/immunization/@10028/history/@1371"/>
      <content type="text/xml">
         <Immunization xmlns="http://hl7.org/fhir">
            <text>
               <status value="generated"/>
               <div xmlns="http://www.w3.org/1999/xhtml">
                  <p>2013-09-22 ADT</p>
               </div>
            </text>
            <date value="2013-09-22"/>
            <vaccineType>
               <text value="ADT"/>
            </vaccineType>
            <subject>
               <type value="Patient"/>
               <reference value="patient/@10004"/>
            </subject>
            <refusedIndicator value="false"/>
            <reported value="false"/>
         </Immunization>
      </content>
      <summary type="xhtml">
         <div xmlns="http://www.w3.org/1999/xhtml">
            <p>2013-09-22 ADT</p>
         </div>
      </summary>
   </entry>
</feed>

Health Intersections (Response)

<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Transaction results</title>
  <id>urn:uuid:990e026a-b22d-4fc5-801e-fafacea8fc</id>
  <updated>2013-10-07T05:49:41Z</updated>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "5015"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/patient/@5015</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@patient/5015/history/@1" rel="self" />
   <updated>2013-10-07T05:49:42Z</updated>
   <published>2013-10-07T05:49:42Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Patient xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>Ahern,Jason (Male 37y)</p>
        </div>
      </text>
      <identifier>
        <use value="official"/>
        <label value="Medicare Number"/>
        <system value="http://oridashi.com.au/system/id/medicare"/>
        <key value="35001582843"/>
      </identifier>
      <identifier>
        <use value="official"/>
        <label value="Pensioner Number"/>
        <system value="http://oridashi.com.au/system/id/pensioner"/>
        <key value="HG-123-432-SS"/>
      </identifier>
      <name>
        <use value="official"/>
        <family value="Ahern"/>
        <given value="Jason"/>
        <given value="Patrick"/>
      </name>
      <telecom>
        <system value="phone"/>
        <value value="0349788795"/>
        <use value="home"/>
      </telecom>
      <telecom>
        <system value="email"/>
        <value value="j.ahern@oridashi.com.au"/>
        <use value="home"/>
      </telecom>
      <gender>
        <coding>
         <system value="http://hl7.org/fhir/sid/v2-0001"/>
         <code value="M"/>
        </coding>
      </gender>
      <birthDate value="1976-05-31"/>
      <deceasedBoolean value="false"/>
      <address>
        <use value="home"/>
        <line value="17 Seymore Ave"/>
        <city value="Bentleigh"/>
        <zip value="3204"/>
      </address>
      <provider>
        <type value="Organization"/>
        <reference value="organization/@10"/>
      </provider>
      <active value="true"/>
     </Patient>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Ahern,Jason (Male 37y)</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "10"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/organization/@10</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@organization/10/history/@1" rel="self" />
   <updated>2013-10-07T05:49:42Z</updated>
   <published>2013-10-07T05:49:42Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Organization xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>Main surgery</p>
        </div>
      </text>
      <name value="Main surgery"/>
      <telecom>
        <system value="phone"/>
        <value value="0744444444"/>
        <use value="work"/>
      </telecom>
      <telecom>
        <system value="fax"/>
        <value value="0744444445"/>
        <use value="work"/>
      </telecom>
      <address>
        <use value="work"/>
        <line value="1 Best Avenue"/>
        <city value="Practiceland"/>
        <zip value="4001"/>
      </address>
      <active value="true"/>
     </Organization>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Main surgery</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "293"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/condition/@293</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@condition/293/history/@1" rel="self" />
   <updated>2013-10-07T05:49:42Z</updated>
   <published>2013-10-07T05:49:42Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Condition xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>2013-08-02 Diabetes Mellitus, Type 2</p>
        </div>
      </text>
      <subject>
        <type value="Patient"/>
        <reference value="patient/@5015"/>
      </subject>
      <code>
        <coding>
         <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
         <code value="778"/>
         <display value="Diabetes Mellitus, Type 2"/>
        </coding>
        <coding>
         <system value="http://snomed.info/id"/>
         <code value="44054006"/>
         <display value="Diabetes Mellitus, Type 2"/>
        </coding>
      </code>
      <category>
        <coding>
         <system value="http://snomed.info/id"/>
         <code value="439401001"/>
         <display value="Diagnosis"/>
        </coding>
      </category>
      <status value="confirmed"/>
      <onsetDate value="2013-08-02"/>
      <abatementBoolean value="false"/>
     </Condition>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>2013-08-02 Diabetes Mellitus, Type 2</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "36"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/procedure/@36</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@procedure/36/history/@1" rel="self" />
   <updated>2013-10-07T05:49:48Z</updated>
   <published>2013-10-07T05:49:48Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Procedure xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>2013-05-28 Wart removal</p>
        </div>
      </text>
      <subject>
        <type value="Patient"/>
        <reference value="patient/@5015"/>
      </subject>
      <type>
        <coding>
         <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
         <code value="2966"/>
         <display value="Wart removal"/>
        </coding>
        <coding>
         <system value="http://snomed.info/id"/>
         <code value="303238005"/>
         <display value="Wart removal"/>
        </coding>
      </type>
      <date>
        <start value="2013-05-28"/>
      </date>
     </Procedure>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>2013-05-28 Wart removal</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "100"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/medicationprescription/@100</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@medicationprescription/100/history/@1" rel="self" />
   <updated>2013-10-07T05:49:49Z</updated>
   <published>2013-10-07T05:49:49Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <MedicationPrescription xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
        </div>
      </text>
      <dateWritten value="2013-08-02"/>
      <status value="active"/>
      <patient>
        <type value="Patient"/>
        <reference value="patient/@5015"/>
      </patient>
      <prescriber>
        <type value="Practitioner"/>
        <reference value="practitioner/@78"/>
      </prescriber>
      <reasonForPrescribingCodeableConcept>
        <coding>
         <system value="http://oridashi.com.au/system/code/bestpracticeterm"/>
         <code value="753"/>
         <display value="Confusion"/>
        </coding>
      </reasonForPrescribingCodeableConcept>
      <medication>
        <type value="Medication"/>
        <reference value="medication/@72"/>
        <display value="Diazepam 2mg Tablet"/>
      </medication>
      <dosageInstruction>
        <dosageInstructionsText value="1 Daily"/>
      </dosageInstruction>
     </MedicationPrescription>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>2013-08-02 Diazepam 2mg Tablet 1 Daily (Reason: Confusion)</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "72"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/medication/@72</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@medication/72/history/@1" rel="self" />
   <updated>2013-10-07T05:49:49Z</updated>
   <published>2013-10-07T05:49:49Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Medication xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>Diazepam 2mg Tablet</p>
        </div>
      </text>
      <name value="Diazepam 2mg"/>
      <code>
        <text value="Diazepam 2mg"/>
      </code>
      <product>
        <form>
         <text value="Tablet"/>
        </form>
      </product>
     </Medication>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Diazepam 2mg Tablet</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "78"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/practitioner/@78</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@practitioner/78/history/@1" rel="self" />
   <updated>2013-10-07T05:49:49Z</updated>
   <published>2013-10-07T05:49:49Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Practitioner xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>Findacure, Frederick</p>
        </div>
      </text>
      <identifier>
        <use value="official"/>
        <label value="Provider Number"/>
        <system value="http://oridashi.com.au/system/id/providernumber"/>
        <key value="*******"/>
      </identifier>
      <identifier>
        <use value="official"/>
        <label value="Prescriber Number"/>
        <system value="http://oridashi.com.au/system/id/prescribernumber"/>
        <key value="*******"/>
      </identifier>
      <name>
        <family value="Findacure"/>
        <given value="Frederick"/>
      </name>
      <organization>
        <type value="Organization"/>
        <reference value="organization/@10"/>
      </organization>
      <role>
        <coding>
         <system value="http://hl7.org/fhir/practitioner-role"/>
         <code value="doctor"/>
        </coding>
      </role>
     </Practitioner>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Findacure, Frederick</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "56"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/adversereaction/@56</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@adversereaction/56/history/@1" rel="self" />
   <updated>2013-10-07T05:49:51Z</updated>
   <published>2013-10-07T05:49:51Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <AdverseReaction xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>Bee stings - Rash (minor)</p>
        </div>
      </text>
      <subject>
        <type value="Patient"/>
        <reference value="patient/@5015"/>
      </subject>
      <didNotOccurFlag value="false"/>
      <symptom>
        <code>
         <text value="Rash"/>
        </code>
        <severity value="minor"/>
      </symptom>
     </AdverseReaction>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Bee stings - Rash (minor)</p>
     </div>
   </summary>
  </entry>
  <entry xmlns="http://www.w3.org/2005/Atom">
   <title>Resource "340"</title>
   <id>http://hl7connect.healthintersections.com.au/svc/fhir/immunization/@340</id>
   <link href="http://hl7connect.healthintersections.com.au/svc/fhir/@immunization/340/history/@1" rel="self" />
   <updated>2013-10-07T05:49:51Z</updated>
   <published>2013-10-07T05:49:51Z</published>
   <author>
     <name>220.244.145.215</name>
   </author>
   <content type="text/xml">
     <Immunization xmlns="http://hl7.org/fhir">
      <text>
        <status value="generated"/>
        <div xmlns="http://www.w3.org/1999/xhtml">
         <p>2013-09-22 ADT</p>
        </div>
      </text>
      <date value="2013-09-22"/>
      <vaccineType>
        <text value="ADT"/>
      </vaccineType>
      <subject>
        <type value="Patient"/>
        <reference value="patient/@5015"/>
      </subject>
      <refusedIndicator value="false"/>
      <reported value="false"/>
     </Immunization>
   </content>
   <summary type="xhtml">
     <div xmlns="http://www.w3.org/1999/xhtml">
      <p>2013-09-22 ADT</p>
     </div>
   </summary>
  </entry>
</feed>