{
  "lexicon": 1,
  "id": "chat.bsky.group.addMembers",
  "defs": {
    "main": {
      "type": "procedure",
      "description": "[NOTE: This is under active development and should be considered unstable while this note is here]. Adds members to a group. The members are added in 'request' status, so they have to accept it. This creates convo memberships.",
      "errors": [
        { "name": "AccountSuspended" },
        { "name": "BlockedActor" },
        { "name": "ConvoLocked" },
        { "name": "InsufficientRole" },
        { "name": "InvalidConvo" },
        { "name": "MemberLimitReached" },
        { "name": "NotFollowedBySender" },
        { "name": "RecipientNotFound" },
        { "name": "UserForbidsGroups" }
      ],
      "input": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["convoId", "members"],
          "properties": {
            "convoId": { "type": "string" },
            "members": {
              "type": "array",
              "items": { "type": "string", "format": "did" },
              "minLength": 1
            }
          }
        }
      },
      "output": {
        "encoding": "application/json",
        "schema": {
          "type": "object",
          "required": ["convo"],
          "properties": {
            "convo": {
              "type": "ref",
              "ref": "chat.bsky.convo.defs#convoView"
            },
            "addedMembers": {
              "type": "array",
              "items": {
                "type": "ref",
                "ref": "chat.bsky.actor.defs#profileViewBasic"
              }
            }
          }
        }
      }
    }
  }
}

