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"]

Boolean

Boolean value without quotes: true or false.

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.

Object

List of "key": value pairs separated by commas. The list is enclosed in curly brackets {}.

{
  "name": "John",
  "surname": "Smith"
}

String

String enclosed in quotation marks, for example: "Hello, world".