Atlassian · Schema

CreateIssueSecuritySchemeDetails

Issue security scheme and it's details

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the issue security scheme.
levels array The list of scheme levels which should be added to the security scheme.
name string The name of the issue security scheme. Must be unique (case-insensitive).
View JSON Schema on GitHub

JSON Schema

atlassian-createissuesecurityschemedetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateIssueSecuritySchemeDetails",
  "title": "CreateIssueSecuritySchemeDetails",
  "additionalProperties": true,
  "description": "Issue security scheme and it's details",
  "properties": {
    "description": {
      "description": "The description of the issue security scheme.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    },
    "levels": {
      "description": "The list of scheme levels which should be added to the security scheme.",
      "items": {
        "$ref": "#/components/schemas/SecuritySchemeLevelBean"
      },
      "type": "array",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the issue security scheme. Must be unique (case-insensitive).",
      "maxLength": 60,
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}