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?
