Atlassian · Schema

SetDefaultResolutionRequest

The new default issue resolution.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
id string The ID of the new default issue resolution. Must be an existing ID or null. Setting this to null erases the default resolution setting.
View JSON Schema on GitHub

JSON Schema

atlassian-setdefaultresolutionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SetDefaultResolutionRequest",
  "title": "SetDefaultResolutionRequest",
  "additionalProperties": false,
  "description": "The new default issue resolution.",
  "properties": {
    "id": {
      "description": "The ID of the new default issue resolution. Must be an existing ID or null. Setting this to null erases the default resolution setting.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "id"
  ],
  "type": "object"
}