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