Skip to content

Instantly share code, notes, and snippets.

@jamesagnew
Created March 18, 2016 14:06
Show Gist options
  • Save jamesagnew/8a93d0e729aa7b783f10 to your computer and use it in GitHub Desktop.
Save jamesagnew/8a93d0e729aa7b783f10 to your computer and use it in GitHub Desktop.
{
"resourceType":"Patient",
"name":[
{
"family":[
"Simpson"
],
"given":[
"Homer",
"Jay"
]
}
],
"birthDate":"1955-05-12",
"address":[
{
"line":[
"342 Evergreen Terrace"
],
"city":"Springfield",
"country":"USA"
}
]
}
<Patient xmlns="http://hl7.org/fhir">
<name>
<family value="Simpson"/>
<given value="Homer"/>
<given value="Jay"/>
</name>
<birthDate value="1955-05-12"/>
<address>
<line value="342 Evergreen Terrace"/>
<city value="Springfield"/>
<country value="USA"/>
</address>
</Patient>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment