Clock Synchronization
+++++++++++++++++++++
.. admonition:: Description.
   :class: seealso

   Allows the CS to sync the host clock with the station

   .. important::

    The date time follows the ISO 8601 format and is a UTC time.

    In python the ISO 8601 for UTC can be obtained as follows::

        from datetime import datetime
        datetime.utcnow().strftime("%Y-%m-%dT%H:%M:%SZ")


.. jsonschema:: ../../../schemas/ClockSyncUpdate.json
   :hide_key: /**/additionalProperties

Example::

    {
        "id": "101d46c1-751e-4798-b491-d0210e3ce07e",
        "name": "clock_sync",
        "type": "update",
        "data": {"current_time": "2021-11-10T14:29:37Z"}
    }

----------