chat.bsky.group.createGroup

bsky-lexicons.bsky.social

Schema Diff

+2 -1

From

CID
bafyreicpqjbpipx...
Indexed At
2026-07-16 14:58 UTC
View this version

To

CID
bafyreidhalpchho...
Indexed At
2026-08-03 16:20 UTC
View this version

Compatibility Analysis

Backward Compatible

No changes detected.

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 16
              "maxLength": 500,
17 17
              "minLength": 1,
18 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 41
          "name": "BlockedSubject"
41 42
        },
42 43
        {
43 44
          "name": "NewAccountCannotCreateGroup"
44 45
        },
45 46
        {
46 47
          "name": "NotFollowedBySender"
47 48
        },
48 49
        {
49 50
          "name": "RecipientNotFound"
50 51
        },
51 52
        {
52 53
          "name": "UserForbidsGroups"
53 54
        }
54 55
      ],
55 56
      "output": {
56 57
        "schema": {
57 58
          "type": "object",
58 59
          "required": [
59 60
            "convo"
60 61
          ],
61 62
          "properties": {
62 63
            "convo": {
63 64
              "ref": "chat.bsky.convo.defs#convoView",
64 65
              "type": "ref"
65 66
            }
66 67
          }
67 68
        },
68 69
        "encoding": "application/json"
69 70
      },
70 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'."
71 72
    }
72 73
  },
73 74
  "$type": "com.atproto.lexicon.schema",
74 75
  "lexicon": 1
75 76
}

Compare Other Versions

Lexicon Garden

@