I have the following XML sequence
<property name="a" value="x" />
<property name="b" value="xx" />
I want to limit "a"
to a list of values, like [ x, y, z] and "b"
to another list like [xx, yy, zz]
Is it possible to do this using XSD, and if it is how?
If this is not possible, how do you recommend to change the XML format in order to make it ready for XSD validation? (I do have more than two property
name/value pairs)