A numeric value that is greater than or equal to zero. It is used for measures which must be positive, e.g. the length of the ship.
XSD Schema Diagram:
XSD Schema Code:
<xs:simpleType name="positiveValue">
<xs:annotation>
<xs:documentation xml:lang="EN">A numeric value that is greater than or equal to zero. It is used for measures which must be positive, e.g. the length of the ship.</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:double">
<xs:minInclusive value="0.0" />
</xs:restriction>
</xs:simpleType>