i wanna write an xml schema that can accept some elements that can occur any number of times in any order. like following examples. it should satisfy all similar combination. lease help me and thanks in advance.
Example 1
<root>
<node1> one </node1>
<node1> two </node1>
<node2> three </node2>
<node1> four </node1>
<node2> five </node2>
<node2> six </node2>
</root>
Example 2
<root>
<node1> one </node1>
<node2> two </node2>
<node1> three </node1>
<node2> four </node2>
<node2> five </node2>
<node1> six </node1>
<node1> seven </node1>
</root>