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 group (id = "example")

<Group xmlns="http://hl7.org/fhir">
  <type>animal</type>
  <actual>true</actual>
  <code>
    <text>Horse</text>
  </code>
  <name>John's herd</name>
  <quantity>25</quantity>
  <characteristic>
    <type>
      <text>gender</text>
    </type>
    <valueString>mixed</valueString>
  </characteristic>
  <characteristic>
    <type>
      <text>owner</text>
    </type>
    <valueString>John Smith</valueString>
  </characteristic>
  <text>
    <status>additional</status>
    <div xmlns="http://www.w3.org/1999/xhtml">
      <p>Herd of 25 horses</p>
      <p>Gender: mixed</p>
      <p>Owner: John Smith</p>
    </div>
  </text>
</Group>