atproto blogging
1{
2 "lexicon": 1,
3 "id": "app.bsky.notification.declaration",
4 "defs": {
5 "main": {
6 "type": "record",
7 "description": "A declaration of the user's choices related to notifications that can be produced by them.",
8 "key": "literal:self",
9 "record": {
10 "type": "object",
11 "required": [
12 "allowSubscriptions"
13 ],
14 "properties": {
15 "allowSubscriptions": {
16 "type": "string",
17 "description": "A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.",
18 "knownValues": [
19 "followers",
20 "mutuals",
21 "none"
22 ]
23 }
24 }
25 }
26 }
27 }
28}