Atlassian · Schema

IssueTypeScreenSchemeUpdateDetails

Details of an issue type screen scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

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