Say that element B is a child of element A. Is there a way to make sure that for each A, the number of B elements is unbounded as long as it is consistent across A elements?
For example, the following would validate:
<A>
<B/>
<B/>
</A>
<A>
<B/>
<B/>
</A>
Because both the first and last <A> tags have two <B> elements.
But the following would not:
<A>
<B/>
<B/>
<B/>
</A>
<A>
<B/>
<B/>
</A>
Because the first <A> element has three <B> elements while the second <A> element has two <B> elements.