<xsd:simpleType name="positiveNumberType" id="st.positiveNumberType" xmlns="http://www.w3.org/1999/xhtml">
<xsd:annotation>
<xsd:documentation>
<h:div class="summary">A positive number.</h:div>
<h:div class="description">Note that we also provide
<h:tt>nonNegativeNumber</h: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> |