Data Types
Available data types
There are general types like 'string,' subtypes such as 'email,' and formatting options for some data types.
Type | Subtype | Formatting options | Description |
---|---|---|---|
Type | Subtype | Formatting options | Description |
string | — | — | A sequence of characters used to represent text.
|
string | markdown | — | |
string | html | — | Formatted HTML text |
string | — | Formatted email address
| |
string | phone | — | String of numbers
|
string | color | — | HEX color
|
string | webLink | — | A URL
|
string | youTube | — | Youtube URL
|
number | — | — | A numeric data type from –9223372036854775808 to 9223372036854775807.
|
number | positiveNum | — | A positive number |
decimal | — | — | An exact numeric data type. Directual interface displays up to 15 digits.
Supports up to 34 digits without any loss and exponent range from –6143 to +6144 |
Array | — | — | An array is an ordered collection of elements. Each element has its own type.
|
Date | — | Date and time. By default has date-time format: YYYY-MM-DDTHH:mm:ss.sssZ) Also can be processed as timestamp, which represents the time, in milliseconds since 00:00:00 UTC on 1 January 1970.
| |
Boolean | — | Options names ( | The type for yes or no. There are three options for its value: |
JSON | — | — | JavaScript object notation. Often used in integrations. MDN Documentation.
|
JSON | checkboxes | Checkbox options + custom option |
|
JSON | radioOptions | Radio options + custom option |
|
JSON | slider | Unit name + step + min, max values |
|
JSON | rangeSlider | Unit name + step + min, max values |
|
JSON | geo-data | Array of objects, that include coordinates, title, image (link) and a description |
|
Link | — | — | The ID of an object from the linked structure. |
arrayLink | — | — | Array of Links |
File | — | — | |
File | image | — | = String, the URL of the image (PNG, SVG, JPG, BMP). |
File | multipleImages | — | = String, the URLs of images, comma separated. |
File | multipleFiles | — | = String, the URLs of files, comma separated. |
Operator | — |
|
Last updated