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