Live video on the AT Protocol
1{
2 "lexicon": 1,
3 "id": "place.stream.server.getServerTime",
4 "defs": {
5 "main": {
6 "type": "query",
7 "description": "Get the current server time for client clock synchronization",
8 "parameters": {
9 "type": "params",
10 "properties": {}
11 },
12 "output": {
13 "encoding": "application/json",
14 "schema": {
15 "type": "object",
16 "required": ["serverTime"],
17 "properties": {
18 "serverTime": {
19 "type": "string",
20 "format": "datetime",
21 "description": "Current server time in RFC3339 format"
22 }
23 }
24 }
25 }
26 }
27 }
28}