Ignore order of elements using xs:extension
- by Peter Lang
How can I design my xsd to ignore the sequence of elements?
<root> <a/> <b/> </root>
<root> <b/> <a/> </root>
I need to use extension for code generation reasons, so I tried the following using all:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema…