{ "$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" }