View raw Markdown
type: exampleresource: Groupexample: group-example

Group Example: group-example

Narrative

Herd of 25 horses

Gender: mixed

Owner: John Smith

Example XML

<?xml version="1.0" encoding="UTF-8"?>
<Group xmlns="http://hl7.org/fhir" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://hl7.org/fhir ../../schema/Group.xsd">
  <id value="101"/>
  <text>
    <status value="additional"/>
    <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>
  <identifier>
    <system value="http://someveterinarianclinic.org/fhir/NamingSystem/herds"/>
    <value value="12345"/>
  </identifier>
  <name value="John's herd"/>
  <type value="animal"/>
  <membership value="enumerated"/>
  <code>
    <coding>
      <system value="http://example.org/fhir/CodeSystem/group-example-type"/>
      <code value="horse"/>
      <display value="Horse"/>
    </coding>
    <text value="Horse"/>
  </code>
  <quantity value="25"/>
  <characteristic>
    <code>
      <coding>
        <system value="http://example.org/fhir/CodeSystem/group-example-characteristic"/>
        <code value="gender"/>
        <display value="Gender"/>
      </coding>
      <text value="gender"/>
    </code>
    <valueCodeableConcept>
      <coding>
        <system value="http://example.org/fhir/CodeSystem/group-example-gender"/>
        <code value="mixed"/>
        <display value="Mixed"/>
      </coding>
      <text value="mixed"/>
    </valueCodeableConcept>
    <exclude value="false"/>
  </characteristic>
  <characteristic>
    <code>
      <coding>
        <system value="http://example.org/fhir/CodeSystem/group-example-characteristic"/>
        <code value="owner"/>
        <display value="Owner"/>
      </coding>
      <text value="owner"/>
    </code>
    <valueCodeableConcept>
      <coding>
        <system value="http://example.org/fhir/CodeSystem/group-example-owner"/>
        <code value="john-smith"/>
        <display value="John Smith"/>
      </coding>
      <text value="John Smith"/>
    </valueCodeableConcept>
    <exclude value="false"/>
  </characteristic>
</Group>