I all, given the following piece of xml, what would the xsd look like that would ensure chema validation failed if MortgageProductInterestRateCollarLimitPct was greater than MortgageProductInterestRateCappedLimitPct?
<MortgageInterestRate>
<MortgageInterestRatePercentage>1.99</MortgageInterestRatePercentage>
<MortgageInterestRatePeriodInMonths>0</MortgageInterestRatePeriodInMonths>
<MortgageInterestRateTypeCode>V</MortgageInterestRateTypeCode>
<MortgageInterestRateTierName>Standard Mortgage Rate</MortgageInterestRateTierName>
<MortgageProductInterestRateLoadingPct>0.00</MortgageProductInterestRateLoadingPct>
<MortgageProductInterestRateBaseRateTypeCode>4</MortgageProductInterestRateBaseRateTypeCode>
<MortgageProductInterestRateCappedLimitPct>234534<MortgageProductInterestRateCappedLimitPct />
<MortgageProductInterestRateCollarLimitPct>654<MortgageProductInterestRateCollarLimitPct />
</MortgageInterestRate>
Thanks