Atlassian · Schema

IssueTypeScreenSchemeMapping

The IDs of the screen schemes for the issue type IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeId string The ID of the issue type or *default*. Only issue types used in classic projects are accepted. An entry for *default* must be provided and defines the mapping for all issue types without a screen sche
screenSchemeId string The ID of the screen scheme. Only screen schemes used in classic projects are accepted.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypescreenschememapping-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeScreenSchemeMapping",
  "title": "IssueTypeScreenSchemeMapping",
  "additionalProperties": false,
  "description": "The IDs of the screen schemes for the issue type IDs.",
  "properties": {
    "issueTypeId": {
      "description": "The ID of the issue type or *default*. Only issue types used in classic projects are accepted. An entry for *default* must be provided and defines the mapping for all issue types without a screen scheme.",
      "type": "string",
      "writeOnly": true
    },
    "screenSchemeId": {
      "description": "The ID of the screen scheme. Only screen schemes used in classic projects are accepted.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "issueTypeId",
    "screenSchemeId"
  ],
  "type": "object",
  "writeOnly": true
}