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