The server sends the current server time to each target. Synchronizing system time between the server and all targets is crucial for all protocol data. This message is sent periodically from the server to all targets. In case of a time deviation, the target time will be adjusted to match the current server time.

SUB biathlon/target/time
SUBSCRIBE biathlon/target/time

Time Synchronization Message

Contains time synchronization data for the target system

Payload

  • unix_timestamp integer(int64) Required

    Unix timestamp in milliseconds

  • timezone string Required

    Timezone identifier

  • utc_offset string Required

    UTC offset string (e.g., "+1:00")

Payload examples
{
  "unix_timestamp": 1730916440,
  "timezone": "CET",
  "utc_offset": "+1:00"
}