Atlassian · Schema
SecurityScheme
Details about a security scheme.
CodeCollaborationPlatformProductivitySoftware Development
Properties
| Name | Type | Description |
|---|---|---|
| defaultSecurityLevelId | integer | The ID of the default security level. |
| description | string | The description of the issue security scheme. |
| id | integer | The ID of the issue security scheme. |
| levels | array | |
| name | string | The name of the issue security scheme. |
| self | string | The URL of the issue security scheme. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SecurityScheme",
"title": "SecurityScheme",
"additionalProperties": false,
"description": "Details about a security scheme.",
"properties": {
"defaultSecurityLevelId": {
"description": "The ID of the default security level.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"description": {
"description": "The description of the issue security scheme.",
"readOnly": true,
"type": "string"
},
"id": {
"description": "The ID of the issue security scheme.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"levels": {
"items": {
"$ref": "#/components/schemas/SecurityLevel"
},
"type": "array"
},
"name": {
"description": "The name of the issue security scheme.",
"readOnly": true,
"type": "string"
},
"self": {
"description": "The URL of the issue security scheme.",
"readOnly": true,
"type": "string"
}
},
"type": "object"
}