Skip to main content Link Search Menu Expand Document (external link)

Documentation Data Types

 

GUID
Globally Unique Identifiers or GUIDs are large, enormous numbers that are nearly guaranteed to be unique. They are usually 128 bits long and look like this in hexadecimal: 30dd879c-ee2f-11db-8314-0800200c9a66
int
A whole number, positive or negative.
number
A numeric value. Can be either an integer or a floating-point number with a decimal point.
string
A sequence of characters.
boolean
A true or false value.
array
A collection of similar data types.
enum
A user-defined data type with a set of named values.
object
A user-defined data type that can be thought of as a collection of properties or key-value pairs. These properties can be any data type