int32
When a variable is classified as an int32
type in the schema then it will be classified as an integer with a size of 32 bits or 4 bytes. The range of values is from -2,147,483,648
to 2,147,483,647
.
Member Def
The int32
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 int32
type.
By default the max
value of byte
type variable is 2,147,483,647
and and min
is -2,147,483,648
.
Last updated