social.colibri.channel.listMessages
Schema Diff
+6 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.channel.listMessages",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "InvalidRequest",
9
+
"description": "A parameter or body field was missing or malformed."
10
+
}
11
+
],
6
12
"output": {
7
13
"schema": {
8
14
"type": "object",
9
15
"required": [
10
16
"messages"
11
17
],
12
18
"properties": {
13
19
"cursor": {
14
20
"type": "string"
15
21
},
16
22
"messages": {
17
23
"type": "array",
18
24
"items": {
19
25
"ref": "lex:social.colibri.channel.defs#message",
20
26
"type": "ref"
21
27
}
22
28
}
23
29
}
24
30
},
25
31
"encoding": "application/json"
26
32
},
27
33
"parameters": {
28
34
"type": "params",
29
35
"required": [
30
36
"channel"
31
37
],
32
38
"properties": {
33
39
"all": {
34
40
"type": "boolean",
35
41
"description": "Include hidden (moderated) messages."
36
42
},
37
43
"limit": {
38
44
"type": "integer"
39
45
},
40
46
"cursor": {
41
47
"type": "string"
42
48
},
43
49
"channel": {
44
50
"type": "string",
45
51
"format": "at-uri"
46
52
}
47
53
}
48
54
},
49
55
"description": "Lists messages in a channel, newest first, paginated."
50
56
}
51
57
},
52
58
"$type": "com.atproto.lexicon.schema",
53
59
"lexicon": 1
54
60
}