Atlassian · Schema

IssueTypeIdsToRemove

The list of issue type IDs to be removed from the field configuration scheme.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeIds array The list of issue type IDs. Must contain unique values not longer than 255 characters and not be empty. Maximum of 100 IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeidstoremove-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeIdsToRemove",
  "title": "IssueTypeIdsToRemove",
  "additionalProperties": false,
  "description": "The list of issue type IDs to be removed from the field configuration scheme.",
  "properties": {
    "issueTypeIds": {
      "description": "The list of issue type IDs. Must contain unique values not longer than 255 characters and not be empty. Maximum of 100 IDs.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "required": [
    "issueTypeIds"
  ],
  "type": "object"
}