This page is part of the FHIR Specification (v0.06: DSTU 1 Ballot 2). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions . Page versions: R5 R4B R4 R3 R2

 

General Person Example (id = "101")

<Person xmlns="http://hl7.org/fhir">
  
  <!--   MRN assigned by ACME healthcare on 6-May 2001   -->
  <identifier>
  <!--  
    
      http://hl7.org/fhir/sid/v2-0203
      MR
    
  -->
    <use>usual</use>
    <label>MRN</label>
    <identifier>
      <system>oid:1.2.36.146.595.217.0.1</system>
      <id>12345</id>      
    </identifier>
    <period>
      <start>2001-05-06</start>
    </period>
    <!--   commented pending decision on dataAbsentReason on assigner
    
      Acme Healthcare
    
      -->
  </identifier>

  <!--   Peter James Chalmers, but called "Jim"   -->
  <name>
    <use>official</use>
     <family>Chalmers</family>
     <given>Peter</given>
     <given>James</given>
  </name>
  <name>
    <use>usual</use>
     <given>Jim</given>
  </name>

  <telecom>
    <use>home</use>
  </telecom>
  <telecom>
    <system>phone</system>
    <value>(03) 5555 6473</value>
    <use>work</use>
  </telecom>
  
  <gender>   
    <system>http://hl7.org/fhir/sid/v2-0001</system>
    <code>M</code>
    <display>Male</display>
  </gender>

  <birthDate>1974-12-25</birthDate> 

  <deceased>false</deceased>
  
  <address>
    <use>home</use>
     <line>534 Erewhon St</line>
     <city>PleasantVille</city>
     <state>Vic</state>
     <zip>3999</zip>
  </address>
    
  <text>
    <status>generated</status>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table>
        <tbody>
          <tr>
            <td>Name</td>
            <td>Peter James <b>Chalmers</b> (&quot;Jim&quot;)</td>
          </tr>
          <tr>
            <td>Address</td>
            <td>534 Erewhon, Pleasantville, Vic, 3999</td>
          </tr>
          <tr>
            <td>Contacts</td>
            <td>Home: unknown. Work: (03) 5555 6473</td>
          </tr>
          <tr>
            <td>Id</td>
            <td>MRN: 12345 (Acme Healthcare)</td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</Person>