Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

FractionDigits defines the maximum number of digits allowable for the fractional part of a datatype derived from decimal

<xsd:simpleType name="numericType">   <xsd:restriction base="xsd:decimal">    <xsd:totalDigits value="10"/>    <xsd:fractionDigits value="3"/>   </xsd:restriction> </xsd:simpleType>