Atlassian · Schema

ProjectIssueTypesHierarchyLevel

Details of an issue type hierarchy level.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
entityId string The ID of the issue type hierarchy level. This property is deprecated, see [Change notice: Removing hierarchy level IDs from next-gen APIs](https://developer.atlassian.com/cloud/jira/platform/change-n
issueTypes array The list of issue types in the hierarchy level.
level integer The level of the issue type hierarchy level.
name string The name of the issue type hierarchy level.
View JSON Schema on GitHub

JSON Schema

atlassian-projectissuetypeshierarchylevel-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIssueTypesHierarchyLevel",
  "title": "ProjectIssueTypesHierarchyLevel",
  "additionalProperties": false,
  "description": "Details of an issue type hierarchy level.",
  "properties": {
    "entityId": {
      "description": "The ID of the issue type hierarchy level. This property is deprecated, see [Change notice: Removing hierarchy level IDs from next-gen APIs](https://developer.atlassian.com/cloud/jira/platform/change-notice-removing-hierarchy-level-ids-from-next-gen-apis/).",
      "format": "uuid",
      "readOnly": true,
      "type": "string"
    },
    "issueTypes": {
      "description": "The list of issue types in the hierarchy level.",
      "items": {
        "$ref": "#/components/schemas/IssueTypeInfo"
      },
      "readOnly": true,
      "type": "array"
    },
    "level": {
      "description": "The level of the issue type hierarchy level.",
      "format": "int32",
      "readOnly": true,
      "type": "integer"
    },
    "name": {
      "description": "The name of the issue type hierarchy level.",
      "readOnly": true,
      "type": "string"
    }
  },
  "type": "object"
}