{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/code-scanning-alert-rule-summary", "title": "code-scanning-alert-rule-summary", "type": "object", "properties": { "id": { "nullable": true, "type": "string", "description": "A unique identifier for the rule used to detect the alert." }, "name": { "type": "string", "description": "The name of the rule used to detect the alert." }, "tags": { "nullable": true, "type": "array", "description": "A set of tags applicable for the rule.", "items": { "type": "string" } }, "severity": { "nullable": true, "type": "string", "description": "The severity of the alert.", "enum": [ "none", "note", "warning", "error" ] }, "security_severity_level": { "nullable": true, "type": "string", "description": "The security severity of the alert.", "enum": [ "low", "medium", "high", "critical" ] }, "description": { "type": "string", "description": "A short description of the rule used to detect the alert." } } }