Skip to main content

Clock

Mandatory properties

PropertyTypeDescription
dateTimeobjectA DateTime object.

Optional properties

PropertyTypeDescription
pinnedbooleanIf true, the clock is pinned in the UI. Default is false.
userEditbooleanIf true, the clock shall be changeable when an operator selects a label that uses it. Default is false.

DateTime

A JSON object representing a date and time.

Mandatory properties

PropertyTypeDescription
yearintegerYear, e.g. 2026.

Optional properties

PropertyTypeDescription
monthintegerMonth, 1-12. Default is 1.
dayintegerDay of month, 1-31. Default is 1.
hourintegerHour, 0-23. Default is 0.
minuteintegerMinute, 0-59. Default is 0.
secondintegerSecond, 0-60. Default is 0.

Example

{
"dateTime": {
"year": 2026,
"month": 5,
"day": 16,
"hour": 12,
"minute": 0,
"second": 0
},
"pinned": false,
"userEdit": true
}