Mega Code Archive

 
Categories / XML Tutorial / XML Schema
 

The long data type is derived from the integer type

The value space is integer values  from â€“9223372036854775808 up to and including 9223372036854775807.  The lexical space is a finite-length sequence of decimal digits with an optional leading - or +. <!-- schema --> <xsd:element name="bignumbers"> <xsd:simpleType>   <xsd:restriction base="xsd:long">    <xsd:enumeration value="2177483647"/>    <xsd:enumeration value="-2177483647"/>   </xsd:restriction> </xsd:simpleType> </xsd:element> <!-- instance document --> <bignumbers>2177483647</bignumbers>