{ "$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" }