Details of global and project permissions granted to the user.
{ "$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" }