Atlassian · Schema

ReorderIssuePriorities

Change the order of issue priorities.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
after string The ID of the priority. Required if `position` isn't provided.
ids array The list of issue IDs to be reordered. Cannot contain duplicates nor after ID.
position string The position for issue priorities to be moved to. Required if `after` isn't provided.
View JSON Schema on GitHub

JSON Schema

atlassian-reorderissuepriorities-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReorderIssuePriorities",
  "title": "ReorderIssuePriorities",
  "additionalProperties": false,
  "description": "Change the order of issue priorities.",
  "properties": {
    "after": {
      "description": "The ID of the priority. Required if `position` isn't provided.",
      "type": "string",
      "writeOnly": true
    },
    "ids": {
      "description": "The list of issue IDs to be reordered. Cannot contain duplicates nor after ID.",
      "items": {
        "type": "string",
        "writeOnly": true
      },
      "type": "array",
      "writeOnly": true
    },
    "position": {
      "description": "The position for issue priorities to be moved to. Required if `after` isn't provided.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "ids"
  ],
  "type": "object"
}