The type of an integer in the range 0...100. |
<xs:simpleType name="Int100Type"> <xs:annotation> <xs:documentation>The type of an integer in the range 0...100.</xs:documentation> </xs:annotation> <xs:restriction base="xs:integer"> <xs:minInclusive value="0"/> <xs:maxInclusive value="100"/> </xs:restriction> </xs:simpleType> |