Atlassian · Schema

ReorderIssueResolutionsRequest

Change the order of issue resolutions.

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-reorderissueresolutionsrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReorderIssueResolutionsRequest",
  "title": "ReorderIssueResolutionsRequest",
  "additionalProperties": false,
  "description": "Change the order of issue resolutions.",
  "properties": {
    "after": {
      "description": "The ID of the resolution. Required if `position` isn't provided.",
      "type": "string",
      "writeOnly": true
    },
    "ids": {
      "description": "The list of resolution 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 resolutions to be moved to. Required if `after` isn't provided.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "ids"
  ],
  "type": "object"
}