app.didpic.feed.getPostThread
Schema Diff
+2 -2
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "app.didpic.feed.getPostThread",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"errors": [
7
7
{
8
8
"name": "PostNotFound"
9
9
}
10
10
],
11
11
"output": {
12
12
"schema": {
13
13
"type": "object",
14
14
"required": [
15
15
"post",
16
16
"comments"
17
17
],
18
18
"properties": {
19
19
"post": {
20
20
"ref": "app.didpic.feed.defs#postView",
21
21
"type": "ref"
22
22
},
23
23
"cursor": {
24
24
"type": "string"
25
25
},
26
26
"comments": {
27
27
"type": "array",
28
28
"items": {
29
29
"ref": "app.didpic.feed.defs#commentView",
30
30
"type": "ref"
31
31
}
32
32
}
33
33
}
34
34
},
35
35
"encoding": "application/json"
36
36
},
37
37
"parameters": {
38
38
"type": "params",
39
39
"required": [
40
40
"uri"
41
41
],
42
42
"properties": {
43
43
"uri": {
44
44
"type": "string",
45
45
"format": "at-uri"
46
46
},
47
47
"limit": {
48
48
"type": "integer",
49
49
"default": 30,
50
50
"maximum": 100,
51
51
"minimum": 1,
52
-
"description": "Number of top-level comments to return. Each carries up to 3 inline replies, so the response can hold up to 4× this many comment views."
52
+
"description": "Top-level comments per page."
53
53
},
54
54
"cursor": {
55
55
"type": "string"
56
56
}
57
57
}
58
58
},
59
-
"description": "A single post plus a page of its top-level comments, oldest first. Each comment carries up to 3 inline replies; if `replies.length < replyCount`, the rest are fetched via feed.getCommentReplies."
59
+
"description": "A post and a page of its top-level comments."
60
60
}
61
61
},
62
62
"$type": "com.atproto.lexicon.schema",
63
63
"lexicon": 1
64
64
}