Hello everyone!
I've got to build an XSD file for XML structure verifying purposes, as usual.
After generating the XSD (with XMLSpy), I've found one portion of the file that is giving me trouble. I've got an enumeration like this:
<xs:enumeration value="1"/>
<xs:enumeration value="1011"/>
<xs:enumeration value="1032"/>
and so on. The problem is, any given integer in this enum must be considered valid, and I cannot write enumeration tags from 1 to, let's say, 65635.
And I also don't know how much of this enum elements will be necessary, because the number of these enumeration tags on the XML file is not fixed!
How can I tell the XSD that any integer value is ok, and that there is no minimal or maximal matches on the XML file for this enumeration?
Thanks in advance (and sorry for my english!)