Atlassian · Schema

SetDefaultPriorityRequest

The new default issue priority.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the new default issue priority. Must be an existing ID or null. Setting this to null erases the default priority setting.
View JSON Schema on GitHub

JSON Schema

atlassian-setdefaultpriorityrequest-schema.json Raw ↑
{
  "$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"
}