{ "$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" }