Atlassian · Schema
Priority
An issue priority.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the issue priority. |
| iconUrl | string | The URL of the icon for the issue priority. |
| id | string | The ID of the issue priority. |
| isDefault | boolean | Whether this priority is the default. |
| name | string | The name of the issue priority. |
| self | string | The URL of the issue priority. |
| statusColor | string | The color used to indicate the issue priority. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Priority",
"title": "Priority",
"additionalProperties": true,
"description": "An issue priority.",
"properties": {
"description": {
"description": "The description of the issue priority.",
"type": "string"
},
"iconUrl": {
"description": "The URL of the icon for the issue priority.",
"type": "string"
},
"id": {
"description": "The ID of the issue priority.",
"type": "string"
},
"isDefault": {
"description": "Whether this priority is the default.",
"type": "boolean"
},
"name": {
"description": "The name of the issue priority.",
"type": "string"
},
"self": {
"description": "The URL of the issue priority.",
"type": "string"
},
"statusColor": {
"description": "The color used to indicate the issue priority.",
"type": "string"
}
},
"type": "object"
}