Atlassian · Schema

OldToNewSecurityLevelMappingsBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
newLevelId string The new issue security level ID. Providing null will clear the assigned old level from issues.
oldLevelId string The old issue security level ID. Providing null will remap all issues without any assigned levels.
View JSON Schema on GitHub

JSON Schema

atlassian-oldtonewsecuritylevelmappingsbean-schema.json Raw ↑
{
  "$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
}