int16
When a variable is classified as an int16
in the schema then it will be classified as an integer with a size of 16 bits or 2 bytes. The range of values is from -32768
to +32767
.
Member Def
The int16
is derived from the number type that shares the same MemberDef as the Number i.e type
, default
, choices
, max
, min
, multipleOf
, divisibleBy
, optional
and null
while enforcing the additional constraint that the number must be of int16
type.
By default the max
value of byte
type variable is +32767
and and min
is -32767
.
Last updated