Atlassian · Schema

ProjectIssueSecurityLevels

List of issue level security items in a project.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
levels array Issue level security items list.
View JSON Schema on GitHub

JSON Schema

atlassian-projectissuesecuritylevels-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectIssueSecurityLevels",
  "title": "ProjectIssueSecurityLevels",
  "additionalProperties": false,
  "description": "List of issue level security items in a project.",
  "properties": {
    "levels": {
      "description": "Issue level security items list.",
      "items": {
        "$ref": "#/components/schemas/SecurityLevel"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "required": [
    "levels"
  ],
  "type": "object"
}