Atlassian · Schema

CreateResolutionDetails

Details of an issue resolution.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the resolution.
name string The name of the resolution. Must be unique (case-insensitive).
View JSON Schema on GitHub

JSON Schema

atlassian-createresolutiondetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateResolutionDetails",
  "title": "CreateResolutionDetails",
  "additionalProperties": true,
  "description": "Details of an issue resolution.",
  "properties": {
    "description": {
      "description": "The description of the resolution.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the resolution. Must be unique (case-insensitive).",
      "maxLength": 60,
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}