YamlGen
  • Scope hl7.fhir.r4.core@4.0.1
  • Readonly
  • readonly

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

  • beta
Patient
{
    "resourceType": "Patient",
    "id": "4",
    "name":  [
        {
            "given":  [
                "John"
            ],
            "family": "Williams"
        }
    ],
    "birthDate": "1965-02-18"
}
<Patient xmlns="http://hl7.org/fhir">
    <id value="4" />
    <name>
        <family value="Williams" />
        <given value="John" />
    </name>
    <birthDate value="1965-02-18" />
</Patient>