Atlassian · Schema

CreateUpdateRoleRequestBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string A description of the project role. Required when fully updating a project role. Optional when creating or partially updating a project role.
name string The name of the project role. Must be unique. Cannot begin or end with whitespace. The maximum length is 255 characters. Required when creating a project role. Optional when partially updating a proje
View JSON Schema on GitHub

JSON Schema

atlassian-createupdaterolerequestbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateUpdateRoleRequestBean",
  "title": "CreateUpdateRoleRequestBean",
  "additionalProperties": false,
  "properties": {
    "description": {
      "description": "A description of the project role. Required when fully updating a project role. Optional when creating or partially updating a project role.",
      "type": "string"
    },
    "name": {
      "description": "The name of the project role. Must be unique. Cannot begin or end with whitespace. The maximum length is 255 characters. Required when creating a project role. Optional when partially updating a project role.",
      "type": "string"
    }
  },
  "type": "object"
}