I want to define a schema that allows child elements to occur in any order, similar to <choice minOccurs="0" maxOccurs="unbounded">
but will allow only one of each element, similar to <sequence minOccurs="1" maxOccurs="1">
can this be done?
for example
<Root>
<ele1>
<ele3>
<ele2>
</Root> <!--Valid-->
And as below:
<Root>
<ele1>
<ele1>
<ele3>
</Root> <!--Invalid-->