chat.bsky.group.createGroup
Schema Diff
+12 -5
Compatibility Analysis
Breaking Changes Detected
2 breaking changes, 0 non-breaking changes.
Breaking Changes (2)
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.createGroup:input.name", sort: "maxLength", old_value: "1280", new_value: "500" }
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.createGroup:input.name", sort: "maxGraphemes", old_value: "128", new_value: "50" }
Migration Guidance
Constraint Changes
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.createGroup:input.name", sort: "maxLength", old_value: "1280", new_value: "500" }
- ConstraintTightened ConstraintTightened { vertex_id: "chat.bsky.group.createGroup:input.name", sort: "maxGraphemes", old_value: "128", new_value: "50" }
1
1
{
2
2
"id": "chat.bsky.group.createGroup",
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
"members",
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
"members": {
21
21
"type": "array",
22
22
"items": {
23
23
"type": "string",
24
24
"format": "did"
25
25
},
26
-
"maxLength": 49
26
+
"maxLength": 10000,
27
+
"description": "The members to add to the group. The owner is automatically added. Implementations may enforce a lower maximum than the 10,000-item schema limit; Bluesky currently supports up to 100 total members. If the owner is included in this list, the list may contain up to the implementation's total member limit. Otherwise, it may contain one fewer."
27
28
}
28
29
}
29
30
},
30
31
"encoding": "application/json"
31
32
},
32
33
"errors": [
33
34
{
34
35
"name": "AccountSuspended"
35
36
},
36
37
{
37
38
"name": "BlockedActor"
38
39
},
39
40
{
40
-
"name": "GroupInvitesDisabled"
41
+
"name": "BlockedSubject"
41
42
},
42
43
{
44
+
"name": "NewAccountCannotCreateGroup"
45
+
},
46
+
{
43
47
"name": "NotFollowedBySender"
44
48
},
45
49
{
46
50
"name": "RecipientNotFound"
51
+
},
52
+
{
53
+
"name": "UserForbidsGroups"
47
54
}
48
55
],
49
56
"output": {
50
57
"schema": {
51
58
"type": "object",
52
59
"required": [
53
60
"convo"
54
61
],
55
62
"properties": {
56
63
"convo": {
57
64
"ref": "chat.bsky.convo.defs#convoView",
58
65
"type": "ref"
59
66
}
60
67
}
61
68
},
62
69
"encoding": "application/json"
63
70
},
64
-
"description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'pending' membership for all members, except the owner who is 'accepted'."
71
+
"description": "Creates a group convo, specifying the members to be added to it. Unlike getConvoForMembers, this isn't idempotent. It will create new groups even if the membership is identical to pre-existing groups. Will create 'request' membership for all members, except the owner who is 'accepted'."
65
72
}
66
73
},
67
74
"$type": "com.atproto.lexicon.schema",
68
75
"lexicon": 1
69
76
}