This data type represents a non-negative integer value.
This is identical to the %xsd.integer data type
except that it has a default MINVAL parameter of 0 and MAXVAL of 65535.
Parameters
parameter MAXVAL = 65535;
The maximum allowed logical value for the data type.
parameter MINVAL = 0;
The minimum allowed logical value for the data type.
parameter STRICT = 1;
Inherited description: If '1' then IsValid() will return false for numbers that are not integers e.g. 1.2, -0.01
rather than the default behavior which is to allow these an normalize them to an integer. This validation
is done by $number using "I" format, so the rules associated with this function apply.
parameter XSDTYPE = unsignedShort;
Declares the XSD type used when projecting XML schemas.