chat.bsky.convo.leaveConvo
Schema Diff
+11 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.leaveConvo",
3
3
"defs": {
4
4
"main": {
5
5
"type": "procedure",
6
6
"input": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"convoId"
11
11
],
12
12
"properties": {
13
13
"convoId": {
14
14
"type": "string"
15
15
}
16
16
}
17
17
},
18
18
"encoding": "application/json"
19
19
},
20
+
"errors": [
21
+
{
22
+
"name": "InvalidConvo"
23
+
},
24
+
{
25
+
"name": "OwnerCannotLeave",
26
+
"description": "The owner of a group conversation cannot leave before locking the group."
27
+
}
28
+
],
20
29
"output": {
21
30
"schema": {
22
31
"type": "object",
23
32
"required": [
24
33
"convoId",
25
34
"rev"
26
35
],
27
36
"properties": {
28
37
"rev": {
29
38
"type": "string"
30
39
},
31
40
"convoId": {
32
41
"type": "string"
33
42
}
34
43
}
35
44
},
36
45
"encoding": "application/json"
37
-
}
46
+
},
47
+
"description": "Leaves a conversation (direct or group). For group, this effectively removes membership. For direct, membership is never removed, only changed to remove from enumerations by the user who left."
38
48
}
39
49
},
40
50
"$type": "com.atproto.lexicon.schema",
41
51
"lexicon": 1
42
52
}