| Type | Description |
|---|
| Boolean | Yes or No |
| Integer | A number which is not a fraction; a whole number. 1, 2, 3... |
| Number | Floating point numbers. 1.5, 2.9,3.59... |
| String | A string is a collection of characters, can contain alphanumeric characters. |
| ENUM | Enumeration type or ENUM for short, is a data type to categorize named values. |
| Date | Date is in the following format YYYY-MM-DD (Example: 2019-02-17) Always in UTC time zone |
| Datetime | Date and time is in the following format YYYY-MM-DD HH:MM:SS (Example: 2019-02-17 20:05:34) Always in UTC time zone. |
| Time | Time is in the following format HH:MM:SS (Example: 20:05:34) |
| Object | An object is a collection of properties, and a property is an association between a name/key and a value. |
Modified at 2025-08-09 05:39:42