chat.bsky.group.editGroup
Schema Diff
+3 -3
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.editGroup:input.name", sort: "maxGraphemes", old_value: "128", new_value: "50" }
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.editGroup:input.name", sort: "maxLength", old_value: "1280", new_value: "500" }
Migration Guidance
Constraint Changes
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.editGroup:input.name", sort: "maxGraphemes", old_value: "128", new_value: "50" }
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.editGroup:input.name", sort: "maxLength", old_value: "1280", new_value: "500" }
1
1
{
2
2
"id": "chat.bsky.group.editGroup",
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
"name"
12
12
],
13
13
"properties": {
14
14
"name": {
15
15
"type": "string",
16
-
"maxLength": 1280,
16
+
"maxLength": 500,
17
17
"minLength": 1,
18
-
"maxGraphemes": 128
18
+
"maxGraphemes": 50
19
19
},
20
20
"convoId": {
21
21
"type": "string"
22
22
}
23
23
}
24
24
},
25
25
"encoding": "application/json"
26
26
},
27
27
"errors": [
28
28
{
29
29
"name": "ConvoLocked"
30
30
},
31
31
{
32
32
"name": "InvalidConvo"
33
33
},
34
34
{
35
35
"name": "InsufficientRole"
36
36
}
37
37
],
38
38
"output": {
39
39
"schema": {
40
40
"type": "object",
41
41
"required": [
42
42
"convo"
43
43
],
44
44
"properties": {
45
45
"convo": {
46
46
"ref": "chat.bsky.convo.defs#convoView",
47
47
"type": "ref"
48
48
}
49
49
}
50
50
},
51
51
"encoding": "application/json"
52
52
},
53
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Edits group settings."
53
+
"description": "Edits group settings."
54
54
}
55
55
},
56
56
"$type": "com.atproto.lexicon.schema",
57
57
"lexicon": 1
58
58
}