negativeInteger
El tipo negativeInteger
es utilizado para representar un número entero negativo (signo negativo). Es decir, es un subtipo de integer
, lo que significa que tiene las mismas propiedades y restricciones.
El 0
NO se considera entero negativo.
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="rango" type="xs:negativeInteger"/>
</xs:schema>
Algunos valores válidos para un negativeInteger
son:
<rango>-33</rango>
<rango>-7</rango>
<rango>-1</rango>
<rango>-999</rango>
Algunos valores no válidos son:
<rango>0</rango>
<rango>3.</rango>
<rango>-4.5</rango>
<rango>6</rango>
<rango>-23.0</rango>
<rango>four</rango>
<rango>dos</rango>