chat.bsky.convo.sendMessageBatch
Schema Diff
+10 -1
Compatibility Analysis
Backward Compatible
No changes detected.
1
1
{
2
2
"id": "chat.bsky.convo.sendMessageBatch",
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
"items"
11
11
],
12
12
"properties": {
13
13
"items": {
14
14
"type": "array",
15
15
"items": {
16
16
"ref": "#batchItem",
17
17
"type": "ref"
18
18
},
19
19
"maxLength": 100
20
20
}
21
21
}
22
22
},
23
23
"encoding": "application/json"
24
24
},
25
+
"errors": [
26
+
{
27
+
"name": "ConvoLocked"
28
+
},
29
+
{
30
+
"name": "InvalidConvo"
31
+
}
32
+
],
25
33
"output": {
26
34
"schema": {
27
35
"type": "object",
28
36
"required": [
29
37
"items"
30
38
],
31
39
"properties": {
32
40
"items": {
33
41
"type": "array",
34
42
"items": {
35
43
"ref": "chat.bsky.convo.defs#messageView",
36
44
"type": "ref"
37
45
}
38
46
}
39
47
}
40
48
},
41
49
"encoding": "application/json"
42
-
}
50
+
},
51
+
"description": "Sends a batch of messages to a conversation."
43
52
},
44
53
"batchItem": {
45
54
"type": "object",
46
55
"required": [
47
56
"convoId",
48
57
"message"
49
58
],
50
59
"properties": {
51
60
"convoId": {
52
61
"type": "string"
53
62
},
54
63
"message": {
55
64
"ref": "chat.bsky.convo.defs#messageInput",
56
65
"type": "ref"
57
66
}
58
67
}
59
68
}
60
69
},
61
70
"$type": "com.atproto.lexicon.schema",
62
71
"lexicon": 1
63
72
}