Atlassian · Schema

UpdateIssueSecurityLevelDetails

Details of issue security scheme level.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the issue security scheme level.
name string The name of the issue security scheme level. Must be unique.
View JSON Schema on GitHub

JSON Schema

atlassian-updateissuesecurityleveldetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateIssueSecurityLevelDetails",
  "title": "UpdateIssueSecurityLevelDetails",
  "additionalProperties": true,
  "description": "Details of issue security scheme level.",
  "properties": {
    "description": {
      "description": "The description of the issue security scheme level.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the issue security scheme level. Must be unique.",
      "maxLength": 60,
      "type": "string",
      "writeOnly": true
    }
  },
  "type": "object"
}