YamlGen
  • Scope TST@current
  • Readonly
  • readonly

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

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