Atlassian · Schema

DefaultLevelValue

Details of scheme and new default level.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
defaultLevelId string The ID of the issue security level to set as default for the specified scheme. Providing null will reset the default level.
issueSecuritySchemeId string The ID of the issue security scheme to set default level for.
View JSON Schema on GitHub

JSON Schema

atlassian-defaultlevelvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DefaultLevelValue",
  "title": "DefaultLevelValue",
  "additionalProperties": true,
  "description": "Details of scheme and new default level.",
  "maxLength": 1000,
  "properties": {
    "defaultLevelId": {
      "description": "The ID of the issue security level to set as default for the specified scheme. Providing null will reset the default level.",
      "type": "string",
      "writeOnly": true
    },
    "issueSecuritySchemeId": {
      "description": "The ID of the issue security scheme to set default level for.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "defaultLevelId",
    "issueSecuritySchemeId"
  ],
  "type": "object",
  "writeOnly": true
}