A community based topic aggregation platform built on atproto
1{
2 "lexicon": 1,
3 "id": "social.coves.community.block",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "Record declaring a block relationship against a community. Blocks are public.",
8 "key": "tid",
9 "record": {
10 "type": "object",
11 "required": ["subject", "createdAt"],
12 "properties": {
13 "subject": {
14 "type": "string",
15 "format": "did",
16 "description": "DID of the community being blocked"
17 },
18 "createdAt": {
19 "type": "string",
20 "format": "datetime",
21 "description": "When the block was created"
22 }
23 }
24 }
25 }
26 }
27}