{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SetDefaultPriorityRequest",
"title": "SetDefaultPriorityRequest",
"additionalProperties": false,
"description": "The new default issue priority.",
"properties": {
"id": {
"description": "The ID of the new default issue priority. Must be an existing ID or null. Setting this to null erases the default priority setting.",
"type": "string",
"writeOnly": true
}
},
"required": [
"id"
],
"type": "object"
}