chat.bsky.convo.getConvo
Schema Diff
+7 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.getConvo",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
+
"errors": [
7
+
{
8
+
"name": "InvalidConvo"
9
+
}
10
+
],
6
11
"output": {
7
12
"schema": {
8
13
"type": "object",
9
14
"required": [
10
15
"convo"
11
16
],
12
17
"properties": {
13
18
"convo": {
14
19
"ref": "chat.bsky.convo.defs#convoView",
15
20
"type": "ref"
16
21
}
17
22
}
18
23
},
19
24
"encoding": "application/json"
20
25
},
21
26
"parameters": {
22
27
"type": "params",
23
28
"required": [
24
29
"convoId"
25
30
],
26
31
"properties": {
27
32
"convoId": {
28
33
"type": "string"
29
34
}
30
35
}
31
-
}
36
+
},
37
+
"description": "Gets an existing conversation by its ID."
32
38
}
33
39
},
34
40
"$type": "com.atproto.lexicon.schema",
35
41
"lexicon": 1
36
42
}