For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Below XSD element not restricting decimal value to two places
<xsd:element name="Amount">
<xsd:simpleType>
<xsd:restriction base="xsd:decimal">
<xsd:pattern value="[+-]?\d+\.\d{2}"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>