Atlassian · Schema
SecurityLevel
Details of an issue level security item.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| description | string | The description of the issue level security item. |
| id | string | The ID of the issue level security item. |
| isDefault | boolean | Whether the issue level security item is the default. |
| issueSecuritySchemeId | string | The ID of the issue level security scheme. |
| name | string | The name of the issue level security item. |
| self | string | The URL of the issue level security item. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SecurityLevel",
"title": "SecurityLevel",
"additionalProperties": false,
"description": "Details of an issue level security item.",
"properties": {
"description": {
"description": "The description of the issue level security item.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The ID of the issue level security item.",
"readOnly": true,
"type": "string"
},
"isDefault": {
"description": "Whether the issue level security item is the default.",
"readOnly": true,
"type": "boolean"
},
"issueSecuritySchemeId": {
"description": "The ID of the issue level security scheme.",
"readOnly": true,
"type": "string"
},
"name": {
"description": "The name of the issue level security item.",
"readOnly": true,
"type": "string"
},
"self": {
"description": "The URL of the issue level security item.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}