Jira · Schema
IssueTypeDetails
Details of an issue type.
AgileIssue TrackingITSMProject ManagementService Management
Properties
| Name | Type | Description |
|---|---|---|
| self | string | The URL of the issue type in the REST API. |
| id | string | The ID of the issue type. |
| description | string | The description of the issue type. |
| iconUrl | string | The URL of the issue type icon. |
| name | string | The name of the issue type (e.g., Bug, Story, Task, Epic). |
| subtask | boolean | Whether this issue type is used to create sub-tasks. |
| avatarId | integer | The ID of the avatar for the issue type. |
| hierarchyLevel | integer | The hierarchy level of the issue type. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "IssueTypeDetails",
"type": "object",
"description": "Details of an issue type.",
"properties": {
"self": {
"type": "string",
"description": "The URL of the issue type in the REST API."
},
"id": {
"type": "string",
"description": "The ID of the issue type."
},
"description": {
"type": "string",
"description": "The description of the issue type."
},
"iconUrl": {
"type": "string",
"description": "The URL of the issue type icon."
},
"name": {
"type": "string",
"description": "The name of the issue type (e.g., Bug, Story, Task, Epic)."
},
"subtask": {
"type": "boolean",
"description": "Whether this issue type is used to create sub-tasks."
},
"avatarId": {
"type": "integer",
"description": "The ID of the avatar for the issue type."
},
"hierarchyLevel": {
"type": "integer",
"description": "The hierarchy level of the issue type."
}
}
}