atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.collab.session",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Active real-time collaboration session. Published when joining a collaborative editing session, deleted on disconnect.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["resource", "nodeId", "createdAt"],
12 "properties": {
13 "resource": {
14 "type": "ref",
15 "ref": "com.atproto.repo.strongRef",
16 "description": "The resource being collaboratively edited."
17 },
18 "nodeId": {
19 "type": "string",
20 "description": "iroh NodeId in z-base32 encoding for P2P connection."
21 },
22 "relayUrl": {
23 "type": "string",
24 "format": "uri",
25 "description": "DERP relay URL if using relay-only mode (browser clients)."
26 },
27 "createdAt": {
28 "type": "string",
29 "format": "datetime"
30 },
31 "expiresAt": {
32 "type": "string",
33 "format": "datetime",
34 "description": "Session TTL. Should be refreshed periodically while active."
35 }
36 }
37 }
38 }
39 }
40}