I have a following XML Schema:
<xsd:simpleType name="fractionalSalary">
<xsd:restriction base="xsd:decimal">
<xsd:fractionDigits value="2" />
<xsd:minExclusive value="0" />
</xsd:restriction>
</xsd:simpleType>
Is there any option to specify minimal number of xsd:fractionDigits
to 2? Because I have a following restriction for salary: positive number with 2 decimal places precision, e.g. 10000.50
and validation should fail on inputs like 1000.5452
or 14582.0001
but also on input 1000.5
or 10000
.
PS: Using XML Schema 1.0