app.didpic.feed.comment
Schema Diff
+3 -3
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.feed.comment",
3
3
"defs": {
4
4
"main": {
5
5
"key": "tid",
6
6
"type": "record",
7
7
"record": {
8
8
"type": "object",
9
9
"required": [
10
10
"subject",
11
11
"text",
12
12
"createdAt"
13
13
],
14
14
"properties": {
15
15
"text": {
16
16
"type": "string",
17
17
"maxLength": 10000,
18
18
"maxGraphemes": 1000
19
19
},
20
20
"parent": {
21
21
"ref": "com.atproto.repo.strongRef",
22
22
"type": "ref",
23
-
"description": "Optional: the comment being replied to. Must be a comment on the same post as `subject`. When absent this is a top-level comment."
23
+
"description": "The comment being replied to."
24
24
},
25
25
"subject": {
26
26
"ref": "com.atproto.repo.strongRef",
27
27
"type": "ref",
28
-
"description": "The post being commented on (top of the thread)."
28
+
"description": "The post being commented on."
29
29
},
30
30
"createdAt": {
31
31
"type": "string",
32
32
"format": "datetime"
33
33
}
34
34
}
35
35
},
36
-
"description": "A comment on a didpic post. Optionally a reply to another comment on the same post."
36
+
"description": "A comment on a post."
37
37
}
38
38
},
39
39
"$type": "com.atproto.lexicon.schema",
40
40
"lexicon": 1
41
41
}