atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.graph.listblock",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Record representing a block relationship against an entire an entire list of accounts (actors).",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": [
12 "subject",
13 "createdAt"
14 ],
15 "properties": {
16 "createdAt": {
17 "type": "string",
18 "format": "datetime"
19 },
20 "subject": {
21 "type": "string",
22 "description": "Reference (AT-URI) to the mod list record.",
23 "format": "at-uri"
24 }
25 }
26 }
27 }
28 }
29}