chat.bsky.convo.sendMessageBatch
Schema Diff
+13 -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
+
{
33
+
"name": "ReplyTargetNotFound"
34
+
}
35
+
],
25
36
"output": {
26
37
"schema": {
27
38
"type": "object",
28
39
"required": [
29
40
"items"
30
41
],
31
42
"properties": {
32
43
"items": {
33
44
"type": "array",
34
45
"items": {
35
46
"ref": "chat.bsky.convo.defs#messageView",
36
47
"type": "ref"
37
48
}
38
49
}
39
50
}
40
51
},
41
52
"encoding": "application/json"
42
-
}
53
+
},
54
+
"description": "Sends a batch of messages to a conversation."
43
55
},
44
56
"batchItem": {
45
57
"type": "object",
46
58
"required": [
47
59
"convoId",
48
60
"message"
49
61
],
50
62
"properties": {
51
63
"convoId": {
52
64
"type": "string"
53
65
},
54
66
"message": {
55
67
"ref": "chat.bsky.convo.defs#messageInput",
56
68
"type": "ref"
57
69
}
58
70
}
59
71
}
60
72
},
61
73
"$type": "com.atproto.lexicon.schema",
62
74
"lexicon": 1
63
75
}