place.stream.server.getServerTime
Lexicon Version: 1
Definitions
Section titled “Definitions”Type: query
Get the current server time for client clock synchronization
Parameters: (None defined)
Output:
- Encoding:
application/json - Schema:
Schema Type: object
| Name | Type | Req’d | Description | Constraints |
|---|---|---|---|---|
serverTime | string | ✅ | Current server time in RFC3339 format | Format: datetime |
Lexicon Source
Section titled “Lexicon Source”{ "lexicon": 1, "id": "place.stream.server.getServerTime", "defs": { "main": { "type": "query", "description": "Get the current server time for client clock synchronization", "parameters": { "type": "params", "properties": {} }, "output": { "encoding": "application/json", "schema": { "type": "object", "required": ["serverTime"], "properties": { "serverTime": { "type": "string", "format": "datetime", "description": "Current server time in RFC3339 format" } } } } } }}