Atlassian · Schema

ProjectPermissions

Permissions which a user has on a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
canEdit boolean Whether the logged user can edit the project.
View JSON Schema on GitHub

JSON Schema

atlassian-projectpermissions-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectPermissions",
  "title": "ProjectPermissions",
  "additionalProperties": false,
  "description": "Permissions which a user has on a project.",
  "properties": {
    "canEdit": {
      "description": "Whether the logged user can edit the project.",
      "readOnly": true,
      "type": "boolean"
    }
  },
  "type": "object"
}