social.colibri.channel.getChannelView
Schema Diff
+10 -0
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "social.colibri.channel.getChannelView",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "AuthRequired",
9
+
"description": "Missing, malformed, or unverifiable service auth."
10
+
},
11
+
{
12
+
"name": "InvalidRequest",
13
+
"description": "A parameter or body field was missing or malformed."
14
+
}
15
+
],
6
16
"output": {
7
17
"schema": {
8
18
"type": "object",
9
19
"required": [
10
20
"messages",
11
21
"unseen"
12
22
],
13
23
"properties": {
14
24
"cursor": {
15
25
"type": "string"
16
26
},
17
27
"unseen": {
18
28
"type": "array",
19
29
"items": {
20
30
"ref": "lex:social.colibri.notification.defs#unseenNotification",
21
31
"type": "ref"
22
32
}
23
33
},
24
34
"messages": {
25
35
"type": "array",
26
36
"items": {
27
37
"ref": "lex:social.colibri.channel.defs#message",
28
38
"type": "ref"
29
39
}
30
40
},
31
41
"readCursor": {
32
42
"ref": "lex:social.colibri.channel.defs#readCursor",
33
43
"type": "ref"
34
44
}
35
45
}
36
46
},
37
47
"encoding": "application/json"
38
48
},
39
49
"parameters": {
40
50
"type": "params",
41
51
"required": [
42
52
"channel"
43
53
],
44
54
"properties": {
45
55
"limit": {
46
56
"type": "integer"
47
57
},
48
58
"channel": {
49
59
"type": "string",
50
60
"format": "at-uri"
51
61
}
52
62
}
53
63
},
54
64
"description": "Returns the initial view of a channel: recent messages, the read cursor, and unseen notifications."
55
65
}
56
66
},
57
67
"$type": "com.atproto.lexicon.schema",
58
68
"lexicon": 1
59
69
}