Atlassian · Schema

PriorityId

The ID of an issue priority.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the issue priority.
View JSON Schema on GitHub

JSON Schema

atlassian-priorityid-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PriorityId",
  "title": "PriorityId",
  "additionalProperties": true,
  "description": "The ID of an issue priority.",
  "properties": {
    "id": {
      "description": "The ID of the issue priority.",
      "readOnly": true,
      "type": "string"
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}