Atlassian · Schema

AssociateSecuritySchemeWithProjectDetails

Issue security scheme, project, and remapping details.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
oldToNewSecurityLevelMappings array The list of scheme levels which should be remapped to new levels of the issue security scheme.
projectId string The ID of the project.
schemeId string The ID of the issue security scheme. Providing null will clear the association with the issue security scheme.
View JSON Schema on GitHub

JSON Schema

atlassian-associatesecurityschemewithprojectdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AssociateSecuritySchemeWithProjectDetails",
  "title": "AssociateSecuritySchemeWithProjectDetails",
  "additionalProperties": false,
  "description": "Issue security scheme, project, and remapping details.",
  "properties": {
    "oldToNewSecurityLevelMappings": {
      "description": "The list of scheme levels which should be remapped to new levels of the issue security scheme.",
      "items": {
        "$ref": "#/components/schemas/OldToNewSecurityLevelMappingsBean"
      },
      "type": "array",
      "writeOnly": true
    },
    "projectId": {
      "description": "The ID of the project.",
      "type": "string",
      "writeOnly": true
    },
    "schemeId": {
      "description": "The ID of the issue security scheme. Providing null will clear the association with the issue security scheme.",
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "projectId",
    "schemeId"
  ],
  "type": "object"
}