Clock
Mandatory properties
| Property | Type | Description |
|---|---|---|
| dateTime | object | A DateTime object. |
Optional properties
| Property | Type | Description |
|---|---|---|
| pinned | boolean | If true, the clock is pinned in the UI. Default is false. |
| userEdit | boolean | If 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
| Property | Type | Description |
|---|---|---|
| year | integer | Year, e.g. 2026. |
Optional properties
| Property | Type | Description |
|---|---|---|
| month | integer | Month, 1-12. Default is 1. |
| day | integer | Day of month, 1-31. Default is 1. |
| hour | integer | Hour, 0-23. Default is 0. |
| minute | integer | Minute, 0-59. Default is 0. |
| second | integer | Second, 0-60. Default is 0. |
Example
{
"dateTime": {
"year": 2026,
"month": 5,
"day": 16,
"hour": 12,
"minute": 0,
"second": 0
},
"pinned": false,
"userEdit": true
}