Example 14-1: Multiple levels of nested, repeating elements

<DepartmentList>
  <Department>
    <Id>97</Id>
    <Name>Finance</Name>
    <BudgetPlan>10</BudgetPlan>
    <BudgetPlan>20</BudgetPlan>
    <Employee>
      <Id>111</Id>
      <Name>Ziggie</Name>
      <Salary>1200</Salary>
      <Dependent>
        <Name>Zoe</Name>
      </Dependent>
      <Dependent>
        <Name>Reggy</Name>
      </Dependent>
    </Employee>
    <Employee>
      <Id>193</Id>
      <Name>Hubert</Name>
      <Salary>2200</Salary>
    </Employee>
  </Department>
</DepartmentList>