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