Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

Use non-negative numbers that are constrained to have only two digits to the right of the decimal point

<?xml version="1.0"?> <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"   targetNamespace="http://www.rntsoft.com" xmlns="http://www.rntsoft.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>