bugsnag · Schema

CollaboratorUpdate

Request body for updating a collaborator's permissions.

Properties

Name Type Description
is_admin boolean Whether the collaborator should have administrator privileges.
project_ids array Updated list of project IDs the collaborator should access.
View JSON Schema on GitHub

JSON Schema

bugsnag-collaboratorupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CollaboratorUpdate",
  "title": "CollaboratorUpdate",
  "type": "object",
  "description": "Request body for updating a collaborator's permissions.",
  "properties": {
    "is_admin": {
      "type": "boolean",
      "description": "Whether the collaborator should have administrator privileges."
    },
    "project_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Updated list of project IDs the collaborator should access."
    }
  }
}