source |
<xsd:simpleType name="nonNegativeScalar">
<xsd:annotation>
<xsd:appinfo>A scalar number that must be non-negative (0.0 is used as a flag for "no value".</xsd:appinfo>
</xsd:annotation>
<xsd:restriction base="xsd:double">
<xsd:minInclusive value="0.0"/>
</xsd:restriction>
</xsd:simpleType> |