I am trying to create an XSD, and trying to write the definition with the following requirement:
Allow child elements specified to appear only once, but one elements to appear multiple times
Allow child elements to be in any order
Example:
<parent>
<child1/>
<child2/>
<child3/>
<child3/>
</parent>
The child1 and child2 elements must be able to exchange the order but should not be repeated.