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