<Patient xmlns="http://hl7.org/fhir">
  <id value="example-patient-1" />
  <identifier>
    <use value="official" />
    <type>
      <coding>
        <system value="http://hl7.org/fhir/v2/0203" />
        <code value="MR" />
        <display value="Medical Record Number" />
      </coding>
    </type>
    <system value="http://example.org/fhir/patient-id" />
    <value value="12345" />
  </identifier>
  <name>
    <use value="official" />
    <family value="Doe" />
    <given value="John" />
  </name>
  <gender value="male" />
  <birthDate value="1980-01-01" />
  <address>
    <use value="home" />
    <line value="123 Main St" />
    <city value="Anytown" />
    <state value="CA" />
    <postalCode value="90210" />
    <country value="USA" />
  </address>
  <telecom>
    <system value="phone" />
    <value value="555-1234" />
    <use value="home" />
  </telecom>
</Patient>