<xsd:simpleType name="positiveNumberType" id="st.positiveNumberType" xmlns="http://www.w3.org/1999/xhtml">
<xsd:annotation>
<xsd:documentation>
<h:div class="summary" xmlns:h="http://www.w3.org/1999/xhtml">A positive number.</h:div>
<h:div class="description" xmlns:h="http://www.w3.org/1999/xhtml">Note that we also provide <tt>nonNegativeNumber</tt> with inclusive zero. The maximum number is (quite large) since 'unbounded' is more difficult to implement.</h:div>
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:double">
<xsd:minExclusive value="0.0" />
<xsd:maxInclusive value="1.0E+99" />
</xsd:restriction>
</xsd:simpleType>
|