atproto blogging
1{
2 "lexicon": 1,
3 "id": "sh.weaver.collab.accept",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Acceptance of a collaboration invite. Completes the two-way agreement.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["invite", "resource", "createdAt"],
12 "properties": {
13 "invite": {
14 "type": "ref",
15 "ref": "com.atproto.repo.strongRef",
16 "description": "Reference to the invite record being accepted."
17 },
18 "resource": {
19 "type": "string",
20 "format": "at-uri",
21 "description": "URI of the resource (denormalized for easier querying)."
22 },
23 "createdAt": {
24 "type": "string",
25 "format": "datetime"
26 }
27 }
28 }
29 }
30 }
31}