Atlassian · Schema

IssueTypeUpdateBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
avatarId integer The ID of an issue type avatar.
description string The description of the issue type.
name string The unique name for the issue type. The maximum length is 60 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeupdatebean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeUpdateBean",
  "title": "IssueTypeUpdateBean",
  "additionalProperties": false,
  "properties": {
    "avatarId": {
      "description": "The ID of an issue type avatar.",
      "format": "int64",
      "type": "integer"
    },
    "description": {
      "description": "The description of the issue type.",
      "type": "string"
    },
    "name": {
      "description": "The unique name for the issue type. The maximum length is 60 characters.",
      "type": "string"
    }
  },
  "type": "object"
}