Which convention would be preferred and why (include some pros and cons of one over the other)?
This:
<company>
<employees>
<employee />
<employee />
<employee />
</employees>
<buildings>
<building />
<building />
</building>
</company>
or this:
<company>
<employee />
<employee />
<employee />
<building />
<building />
</company>