<xsd:simpleType name="RatioType"> <xsd:annotation> <xsd:documentation>A fraction between 0 and 1 that allow up to 5 decimal places</xsd:documentation> </xsd:annotation> <xsd:restriction base="xsd:decimal"> <xsd:totalDigits value="6" /> <xsd:fractionDigits value="5" /> <xsd:minInclusive value="0.00000" /> <xsd:maxInclusive value="1.00000" /> </xsd:restriction> </xsd:simpleType>