The following XML fragment can be split using the standard XML library (using 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, the elements 'a' and 'b' are mixed (not deterministic). Is it possible to write an XSD for this "mixed" behavior?
source
share