I know that. But that will allow from 0 to 5 INSERT records. I want to make it possible to have other records (UPDATE, CREATE, etc.) too, but as a choice from one of them. Like:
<OPERATIONS>
<INSERT></INSERT>
<INSERT></INSERT>
<OPERATIONS>
or
<OPERATIONS>
<UPDATE></UPDATE>...
How can I set a sequence of choices? An example:
<xs:element name="OPERATIONS">
<xs:complexType>
<xs:sequence>
<xs:choice>
<xs:element ref="INSERT"/>
<xs:element ref="UPDATE"/>
<xs:element ref="CREATE"/>
<xs:element ref="DELETE"/>...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.