Dear all,
I have the following XML Schema definition:
<xs:element name="object">
<xs:complexType>
<xs:sequence>
<xs:element name="m" type="xs:int"/>
<xs:element name="n" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</xs:element>
I would like to know if it is possible to impose that the value of the element m must be higher than the value of the element n in the xml-schema definition.
Thank you in advance
I have the following XML Schema definition:
<xs:element name="object">
<xs:complexType>
<xs:sequence>
<xs:element name="m" type="xs:int"/>
<xs:element name="n" type="xs:int"/>
</xs:sequence>
</xs:complexType>
</xs:element>
I would like to know if it is possible to impose that the value of the element m must be higher than the value of the element n in the xml-schema definition.
Thank you in advance