Patient Amy Shaw

This is a structured view of this patient:

Patient

XML

<Patient xmlns="http://hl7.org/fhir">
    <id value="AmyShaw-patient-VALID" />
    <meta>
        <profile value="https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient" />
    </meta>
    <extension url="http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex">
        <valueCode value="F" />
    </extension>
    <identifier>
        <use value="usual" />
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203" />
                <code value="MR" />
                <display value="Medical Record Number" />
            </coding>
            <text value="Medical Record Number" />
        </type>
        <system value="https://fake-acme.org/fhir/NamingSystem/Patient-Identifier" />
        <value value="1032702" />
    </identifier>
    <active value="true" />
    <name>
        <family value="Shaw" />
        <given value="Amy" />
        <given value="V." />
    </name>
    <telecom>
        <system value="phone" />
        <value value="555-555-5555" />
        <use value="home" />
    </telecom>
    <telecom>
        <system value="email" />
        <value value="amy.shaw@example.com" />
    </telecom>
    <gender value="female" />
    <birthDate value="2007-02-20" />
    <address>
        <line value="49 Meadow St" />
        <city value="Mounds" />
        <state value="OK" />
        <postalCode value="74047" />
        <country value="US" />
    </address>
    <communication>
        <language>
            <coding>
                <system value="urn:ietf:bcp:47" />
                <code value="nl-NL" />
            </coding>
        </language>
    </communication>
</Patient>

JSON

{
    "resourceType": "Patient",
    "id": "AmyShaw-patient-VALID",
    "meta": {
        "profile":  [
            "https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient"
        ]
    },
    "identifier":  [
        {
            "system": "https://fake-acme.org/fhir/NamingSystem/Patient-Identifier",
            "use": "usual",
            "type": {
                "coding":  [
                    {
                        "code": "MR",
                        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
                        "display": "Medical Record Number"
                    }
                ],
                "text": "Medical Record Number"
            },
            "value": "1032702"
        }
    ],
    "extension":  [
        {
            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex",
            "valueCode": "F"
        }
    ],
    "active": true,
    "name":  [
        {
            "family": "Shaw",
            "given":  [
                "Amy",
                "V."
            ]
        }
    ],
    "telecom":  [
        {
            "system": "phone",
            "value": "555-555-5555",
            "use": "home"
        },
        {
            "system": "email",
            "value": "amy.shaw@example.com"
        }
    ],
    "gender": "female",
    "birthDate": "2007-02-20",
    "address":  [
        {
            "line":  [
                "49 Meadow St"
            ],
            "city": "Mounds",
            "state": "OK",
            "postalCode": "74047",
            "country": "US"
        }
    ],
    "communication":  [
        {
            "language": {
                "coding":  [
                    {
                        "code": "nl-NL",
                        "system": "urn:ietf:bcp:47"
                    }
                ]
            }
        }
    ]
}