The hierarchy of issue types within a project.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ProjectIssueTypeHierarchy", "title": "ProjectIssueTypeHierarchy", "additionalProperties": false, "description": "The hierarchy of issue types within a project.", "properties": { "hierarchy": { "description": "Details of an issue type hierarchy level.", "items": { "$ref": "#/components/schemas/ProjectIssueTypesHierarchyLevel" }, "readOnly": true, "type": "array" }, "projectId": { "description": "The ID of the project.", "format": "int64", "readOnly": true, "type": "integer" } }, "type": "object" }