crazyfishpants
Programmer
Hi all,
I am trying to create an XSD for an XML file with multiple "unknown" levels. What I mean is that the XML file I am working from has a single root node that contains many nodes of type A. All Nodes of type A can contain additional type A nodes and also type B nodes. These type A nodes can contain more type A nodes and B nodes. And so on... There is no telling how deep the type A nodes can go. How can I capture this in an XSD?
Thanks!
Example of XML file.
<root>
<type a>
<type a>
...
<type b>
<type b>
<type a>
...
I am trying to create an XSD for an XML file with multiple "unknown" levels. What I mean is that the XML file I am working from has a single root node that contains many nodes of type A. All Nodes of type A can contain additional type A nodes and also type B nodes. These type A nodes can contain more type A nodes and B nodes. And so on... There is no telling how deep the type A nodes can go. How can I capture this in an XSD?
Thanks!
Example of XML file.
<root>
<type a>
<type a>
...
<type b>
<type b>
<type a>
...