chat.bsky.convo.getConvoAvailability
Schema Diff
+1 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.getConvoAvailability",
3
3
"defs": {
4
4
"main": {
5
5
"type": "query",
6
6
"output": {
7
7
"schema": {
8
8
"type": "object",
9
9
"required": [
10
10
"canChat"
11
11
],
12
12
"properties": {
13
13
"convo": {
14
14
"ref": "chat.bsky.convo.defs#convoView",
15
15
"type": "ref"
16
16
},
17
17
"canChat": {
18
18
"type": "boolean"
19
19
}
20
20
}
21
21
},
22
22
"encoding": "application/json"
23
23
},
24
24
"parameters": {
25
25
"type": "params",
26
26
"required": [
27
27
"members"
28
28
],
29
29
"properties": {
30
30
"members": {
31
31
"type": "array",
32
32
"items": {
33
33
"type": "string",
34
34
"format": "did"
35
35
},
36
36
"maxLength": 10,
37
37
"minLength": 1
38
38
}
39
39
}
40
40
},
41
-
"description": "Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned."
41
+
"description": "Check whether the requester and the other members can start a 1-1 chat. Only applicable to direct (non-group) conversations. If an existing convo is found for these members, it is returned. Does not create a new convo if it doesn't exist."
42
42
}
43
43
},
44
44
"$type": "com.atproto.lexicon.schema",
45
45
"lexicon": 1
46
46
}