Atlassian · Schema

IssueTypeSchemeUpdateDetails

Details of the name, description, and default issue type for an issue type scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
defaultIssueTypeId string The ID of the default issue type of the issue type scheme.
description string The description of the issue type scheme. The maximum length is 4000 characters.
name string The name of the issue type scheme. The name must be unique. The maximum length is 255 characters.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeschemeupdatedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeSchemeUpdateDetails",
  "title": "IssueTypeSchemeUpdateDetails",
  "additionalProperties": false,
  "description": "Details of the name, description, and default issue type for an issue type scheme.",
  "properties": {
    "defaultIssueTypeId": {
      "description": "The ID of the default issue type of the issue type scheme.",
      "type": "string",
      "writeOnly": true
    },
    "description": {
      "description": "The description of the issue type scheme. The maximum length is 4000 characters.",
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the issue type scheme. The name must be unique. The maximum length is 255 characters.",
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}