app.didpic.notification.defs
Schema Diff
+3 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.notification.defs",
3
3
"defs": {
4
4
"notificationView": {
5
5
"type": "object",
6
6
"required": [
7
7
"id",
8
8
"reason",
9
9
"author",
10
10
"recordUri",
11
11
"recordCid",
12
12
"count",
13
13
"isRead",
14
14
"createdAt",
15
15
"indexedAt"
16
16
],
17
17
"properties": {
18
18
"id": {
19
19
"type": "string"
20
20
},
21
21
"post": {
22
22
"ref": "app.didpic.feed.defs#postView",
23
23
"type": "ref",
24
24
"description": "Hydrated post view for reasons that involve a post."
25
25
},
26
26
"count": {
27
27
"type": "integer",
28
28
"minimum": 1,
29
29
"description": "Number of records collapsed into this notification. Always 1 except for likes."
30
30
},
31
31
"author": {
32
32
"ref": "app.didpic.actor.defs#profileBasic",
33
33
"type": "ref"
34
34
},
35
35
"isRead": {
36
36
"type": "boolean"
37
37
},
38
38
"reason": {
39
39
"type": "string",
40
40
"knownValues": [
41
41
"like",
42
42
"comment",
43
43
"reply",
44
-
"follow"
44
+
"follow",
45
+
"subscribed-post",
46
+
"mention"
45
47
]
46
48
},
47
49
"comment": {
48
50
"ref": "app.didpic.feed.defs#commentView",
49
51
"type": "ref",
50
52
"description": "Hydrated comment view when the subject is a comment."
51
53
},
52
54
"postUri": {
53
55
"type": "string",
54
56
"format": "at-uri",
55
57
"description": "Thread-root post URI for post-context reasons. Absent for follow."
56
58
},
57
59
"createdAt": {
58
60
"type": "string",
59
61
"format": "datetime"
60
62
},
61
63
"indexedAt": {
62
64
"type": "string",
63
65
"format": "datetime"
64
66
},
65
67
"recordCid": {
66
68
"type": "string",
67
69
"format": "cid"
68
70
},
69
71
"recordUri": {
70
72
"type": "string",
71
73
"format": "at-uri"
72
74
},
73
75
"subjectCid": {
74
76
"type": "string",
75
77
"format": "cid"
76
78
},
77
79
"subjectUri": {
78
80
"type": "string",
79
81
"format": "at-uri",
80
82
"description": "URI of the target record. Post for post-likes and top-level comments, comment for comment-likes and replies. Absent for follow."
81
83
}
82
84
}
83
85
}
84
86
},
85
87
"$type": "com.atproto.lexicon.schema",
86
88
"lexicon": 1
87
89
}