FHIRPath

If you Log in or sign up, you can edit this script yourself.

name
name
{
"use": "official",
"given": [
"Adam",
"Testpatient"
],
"family": "Hanson",
"suffix": [
"Sr"
]
}
{
"use": "usual",
"given": [
"Test Patient"
]
}
<name xmlns="http://hl7.org/fhir">
<use value="official" />
<family value="Hanson" />
<given value="Adam" />
<given value="Testpatient" />
<suffix value="Sr" />
</name>
<name xmlns="http://hl7.org/fhir">
<use value="usual" />
<given value="Test Patient" />
</name>