{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Add Account to Group",
  "description": "Add an account to a group by email. If the email belongs to an existing organization member they are added directly; otherwise an invitation is sent.",
  "type": "object",
  "required": ["email"],
  "properties": {
    "email": {
      "type": "string",
      "format": "email",
      "title": "Email",
      "description": "Email address of the user to add to the group.",
      "examples": ["alice@example.com"]
    }
  }
}
