Property types
In component descriptions, you can find the type for each property. This page provides explanations for the types.
Array
An array of elements separated by a comma. As array items, you can use standard JSON elements: a string, number, true
, false
, object, or array. Arrays are enclosed in square brackets []
:
"cities": ["Moscow", "Tokyo", "New York"]
Copied
Boolean
Boolean value without quotes: true
or false
.
Copied
Float
Floating-point number with a precision of 6-9 decimal digits.
Float64
64-bit floating-point number with a precision of 15-18 decimal digits.
Integer
Integer without quotes, for example, 25
.
Copied
Object
List of "key": value
pairs separated by commas. The list is enclosed in curly brackets {}
.
{
"name": "John",
"surname": "Smith"
}
Copied
String
String enclosed in quotation marks, for example: "Hello, world"
.
Copied