Data Types
The following base types of data can be used in variables:
Type | Description |
Default Value |
---|---|---|
Boolean | Represents true or false values. |
false |
Date Time |
Represents a timestamp including a date and time. Supported formats:
|
0001-01-01T00:00:00+00:00 |
Decimal | Numbers with a decimal point, such as 4.5. |
0.0 |
Integer | Whole numbers with no decimals. |
0 |
Large String | Strings that can be up to 10 MB in size. |
"" (null string) |
Secure String | Encrypted strings that are masked for security purposes. |
"" (null string) |
String |
Text containing any combination of characters. Enter value by string type; HTML, JSON, Markdown, text, Python, XML, or YAML. |
"" (null string) |
Table | Contains rows and columns of structured data, like an Excel spreadsheet. |
N/A |
Custom Table Type | Custom tables with a pre-defined structure. |
N/A |
Group together various base types of data into an object variable. |
{} (null object) |
|
Array containing multiple elements or objects into an array variable. |
[] (null array) |