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

 

Example of animal (id = "example")

<Animal xmlns="http://hl7.org/fhir">
  
  <!--   Dog tag, under Maroondah City council   -->
  <identifier>
    <label>Dog Tag</label>
    <identifier>
      <system>http://www.maroondah.vic.gov.au/AnimalRegFees.aspx</system>
      <id>1234123</id>      
    </identifier>
    <period>
      <start>2010-05-31</start>
    </period>
    <assigner>
      <display>Maroondah City Council</display>
    </assigner>
  </identifier>

  <!--   Dog's name: Kenzi   -->
  <name>
    <use>usual</use>
    <given>Kenzi</given>
  </name>
    
  <dob>2010-03-23</dob> 

  <species>
    <coding>
      <system>http://en.wikipedia.org/wiki/Biological_classification</system>
      <code>Canis lupus familiaris</code>
    </coding>
  </species>
  <breed>
    <coding>
      <system>http://snomed.info</system>
      <code>58108001</code>              
      <display>Golden retriever</display>  
    </coding>      
  </breed>
  <gender>
    <coding>
      <code>F</code>
    </coding>
  </gender>
  
  <!--   owner   -->
  <relatedEntity>
    <role>
      <coding>
        <system>http://hl7.org/fhir/sid/v2-0063</system>
        <code>OWN</code>
        <display>Owner</display>
      </coding>
    </role>
    <name>
      <use>official</use>
      <family>Chalmers</family>
      <given>Peter</given>
      <given>James</given>
    </name>
    <address>
      <use>home</use>
      <line>534 Erewhon St</line>
      <city>PleasantVille</city>
      <state>Vic</state>
      <zip>3999</zip>
    </address>
    <contact>
      <system>phone</system>
      <value>(03) 5555 6473</value>
      <use>work</use>
    </contact>
  </relatedEntity>
   
  <text>
    <status>generated</status>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <table>
        <tbody>
          <tr>
            <td>Id</td>
            <td>Kenzi (Dog: Golden Retriever)</td>
          </tr>
          <tr>
            <td>Owner</td>
            <td>Peter Chalmers, 534 Erewhon, Pleasantville, Vic, 3999</td>
          </tr>
          <tr>
            <td>Contacts</td>
            <td>Work: (03) 5555 6473</td>
          </tr>
          <tr>
            <td>Id</td>
            <td>Dog Tag: 1234123 (Maroondah City Council)</td>
          </tr>
        </tbody>
      </table>
    </div>
  </text>
</Animal>