vote up 0 vote down star

I would like to specify the structure of underlying child elements based upon an xml attribute value. For example:

<param type="uniform">
    <high>10</high>
    <low>0</low>
</param>

<param2 type="normal">
    <mean>5</mean>
    <stdev>2.5</mean>
<param2>

Is there a way to validate this type of structure using XSD?

flag

1 Answer

vote up 1 vote down check

No, unfortunately, this is an area where XSD is lacking - you cannot control the structure based on values in an attribute or element. XSD is strictly about controlling structure.

For something like this, you'd have to use other XML validation techniques, so I suggest you might want to have a look at Schematron:

Schematron is an approach where you can define these kind of dependencies ("if this attribute has value XYZ, then .......").

Marc

link|flag
This is what I suspected was the case. Thanks for validating my thoughts. – Bryan Ward Sep 16 at 20:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.