Atlassian · Schema

SecuritySchemeLevelBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
description string The description of the issue security scheme level.
isDefault boolean Specifies whether the level is the default level. False by default.
members array The list of level members which should be added to 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-securityschemelevelbean-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecuritySchemeLevelBean",
  "title": "SecuritySchemeLevelBean",
  "additionalProperties": false,
  "properties": {
    "description": {
      "description": "The description of the issue security scheme level.",
      "maxLength": 4000,
      "type": "string",
      "writeOnly": true
    },
    "isDefault": {
      "description": "Specifies whether the level is the default level. False by default.",
      "type": "boolean",
      "writeOnly": true
    },
    "members": {
      "description": "The list of level members which should be added to the issue security scheme level.",
      "items": {
        "$ref": "#/components/schemas/SecuritySchemeLevelMemberBean"
      },
      "type": "array",
      "writeOnly": true
    },
    "name": {
      "description": "The name of the issue security scheme level. Must be unique.",
      "maxLength": 255,
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "name"
  ],
  "type": "object",
  "writeOnly": true
}