Atlassian · Schema

BulkPermissionGrants

Details of global and project permissions granted to the user.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
globalPermissions array List of permissions granted to the user.
projectPermissions array List of project permissions and the projects and issues those permissions provide access to.
View JSON Schema on GitHub

JSON Schema

atlassian-bulkpermissiongrants-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BulkPermissionGrants",
  "title": "BulkPermissionGrants",
  "additionalProperties": false,
  "description": "Details of global and project permissions granted to the user.",
  "properties": {
    "globalPermissions": {
      "description": "List of permissions granted to the user.",
      "items": {
        "type": "string"
      },
      "type": "array",
      "uniqueItems": true
    },
    "projectPermissions": {
      "description": "List of project permissions and the projects and issues those permissions provide access to.",
      "items": {
        "$ref": "#/components/schemas/BulkProjectPermissionGrants"
      },
      "type": "array",
      "uniqueItems": true
    }
  },
  "required": [
    "globalPermissions",
    "projectPermissions"
  ],
  "type": "object"
}