Use non-negative numbers that are constrained to have only two digits to the right of the decimal point : fractionDigits « XML Schema « XML Tutorial






<?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://www.java2s.com" xmlns="http://www.java2s.com"
  elementFormDefault="qualified">

  <xs:simpleType name="positiveDecimalN.2">
    <xs:restriction base="xs:decimal">
      <xs:minInclusive value="0" />
      <xs:fractionDigits value="2" />
    </xs:restriction>
  </xs:simpleType>
</xs:schema>








3.75.fractionDigits
3.75.1.fractionDigits defines the maximum number of digits allowable for the fractional part of a datatype derived from decimal
3.75.2.Use non-negative numbers that are constrained to have only two digits to the right of the decimal point