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