Atlassian · Schema
IssueTypeScheme
Details of an issue type scheme.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| defaultIssueTypeId | string | The ID of the default issue type of the issue type scheme. |
| description | string | The description of the issue type scheme. |
| id | string | The ID of the issue type scheme. |
| isDefault | boolean | Whether the issue type scheme is the default. |
| name | string | The name of the issue type scheme. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/IssueTypeScheme",
"title": "IssueTypeScheme",
"additionalProperties": false,
"description": "Details of an issue type scheme.",
"properties": {
"defaultIssueTypeId": {
"description": "The ID of the default issue type of the issue type scheme.",
"type": "string"
},
"description": {
"description": "The description of the issue type scheme.",
"type": "string"
},
"id": {
"description": "The ID of the issue type scheme.",
"type": "string"
},
"isDefault": {
"description": "Whether the issue type scheme is the default.",
"type": "boolean"
},
"name": {
"description": "The name of the issue type scheme.",
"type": "string"
}
},
"required": [
"id",
"name"
],
"type": "object"
}