{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OldToNewSecurityLevelMappingsBean", "title": "OldToNewSecurityLevelMappingsBean", "additionalProperties": false, "properties": { "newLevelId": { "description": "The new issue security level ID. Providing null will clear the assigned old level from issues.", "type": "string", "writeOnly": true }, "oldLevelId": { "description": "The old issue security level ID. Providing null will remap all issues without any assigned levels.", "type": "string", "writeOnly": true } }, "required": [ "newLevelId", "oldLevelId" ], "type": "object", "writeOnly": true }