I want to define that the first element will be of a specific type, and the following will be some elements in any order. Like this:
<node>
<!-- always at first -->
<node-data>
...
</node-data>
<!-- other nodes in any order-->
<node3></node3>
<node1></node1>
<node2></node2>
</node>
I can t use <xsd:sequence>
因为它将迫使所有节点都符合规定。
Thanks for your help. Sorry on my english.