H
hooomee
Given:
<xs:choice maxOccurs=5>
<xs:element name="Foo" type="bar" />
<xs:element name="Foo1" type="bar" />
<xs:element name="Foo2" type="bar" />
</xs:choice>
Is the choice made once and then the choosen element can occur 5 times,
or is the choice made once for each occurance?
I'm looking for the first behavior, choose once, then allow the choosen
element 5 times. I'm not sure how to get that..
<xs:choice maxOccurs=5>
<xs:element name="Foo" type="bar" />
<xs:element name="Foo1" type="bar" />
<xs:element name="Foo2" type="bar" />
</xs:choice>
Is the choice made once and then the choosen element can occur 5 times,
or is the choice made once for each occurance?
I'm looking for the first behavior, choose once, then allow the choosen
element 5 times. I'm not sure how to get that..