Atlassian · Schema

IssueSecurityLevelMember

Issue security level member.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
holder object The user or group being granted the permission. It consists of a `type` and a type-dependent `parameter`. See [Holder object](../api-group-permission-schemes/#holder-object) in *Get all permission sch
id integer The ID of the issue security level member.
issueSecurityLevelId integer The ID of the issue security level.
managed boolean
View JSON Schema on GitHub

JSON Schema

atlassian-issuesecuritylevelmember-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IssueSecurityLevelMember",
  "title": "IssueSecurityLevelMember",
  "additionalProperties": false,
  "description": "Issue security level member.",
  "properties": {
    "holder": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PermissionHolder"
        }
      ],
      "description": "The user or group being granted the permission. It consists of a `type` and a type-dependent `parameter`. See [Holder object](../api-group-permission-schemes/#holder-object) in *Get all permission schemes* for more information."
    },
    "id": {
      "description": "The ID of the issue security level member.",
      "format": "int64",
      "type": "integer"
    },
    "issueSecurityLevelId": {
      "description": "The ID of the issue security level.",
      "format": "int64",
      "type": "integer"
    },
    "managed": {
      "type": "boolean",
      "writeOnly": true
    }
  },
  "required": [
    "holder",
    "id",
    "issueSecurityLevelId"
  ],
  "type": "object"
}