xs:int — 32 bit signed integers.
xs:enumeration, xs:fractionDigits, xs:maxExclusive, xs:maxInclusive, xs:minExclusive, xs:minInclusive, xs:pattern, xs:totalDigits, xs:whiteSpace
<xs:simpleType name="int" id="int"> <xs:restriction base="xs:long"> <xs:minInclusive value="-2147483648"/> <xs:maxInclusive value="2147483647"/> </xs:restriction> </xs:simpleType>
The value space of xs:int
is the set of common
single size integers (32 bits), i.e., the integers between
-2147483648 and 2147483647, its lexical space allows any number of
insignificant leading zeros.