Atlassian · Schema

IssueTypeIds

The list of issue type IDs.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
issueTypeIds array The list of issue type IDs.
View JSON Schema on GitHub

JSON Schema

atlassian-issuetypeids-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueTypeIds",
  "title": "IssueTypeIds",
  "additionalProperties": false,
  "description": "The list of issue type IDs.",
  "properties": {
    "issueTypeIds": {
      "description": "The list of issue type IDs.",
      "items": {
        "type": "string",
        "writeOnly": true
      },
      "type": "array",
      "writeOnly": true
    }
  },
  "required": [
    "issueTypeIds"
  ],
  "type": "object"
}