The following XML snippet is parsable using standard XML lib (tried with Java and Scala).
<?xml version="1.0" encoding="UTF-8"?>
<list>
<a>value1</a>
<b>value2</b>
<a>value3</a>
<a>value4</a>
<a>value5</a>
<b>value6</b>
<b>value7</b>
</list>
As you can see 'a' and 'b' elements are mixed (non deterministic). Is it possible to write a XSD for this "mixed" behaviour?