{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/code-scanning-alert-items", "title": "code-scanning-alert-items", "type": "object", "properties": { "number": { "$ref": "#/components/schemas/alert-number" }, "created_at": { "$ref": "#/components/schemas/alert-created-at" }, "updated_at": { "$ref": "#/components/schemas/alert-updated-at" }, "url": { "$ref": "#/components/schemas/alert-url" }, "html_url": { "$ref": "#/components/schemas/alert-html-url" }, "instances_url": { "$ref": "#/components/schemas/alert-instances-url" }, "state": { "$ref": "#/components/schemas/code-scanning-alert-state" }, "fixed_at": { "$ref": "#/components/schemas/alert-fixed-at" }, "dismissed_by": { "$ref": "#/components/schemas/nullable-simple-user" }, "dismissed_at": { "$ref": "#/components/schemas/alert-dismissed-at" }, "dismissed_reason": { "$ref": "#/components/schemas/code-scanning-alert-dismissed-reason" }, "dismissed_comment": { "$ref": "#/components/schemas/code-scanning-alert-dismissed-comment" }, "rule": { "$ref": "#/components/schemas/code-scanning-alert-rule-summary" }, "tool": { "$ref": "#/components/schemas/code-scanning-analysis-tool" }, "most_recent_instance": { "$ref": "#/components/schemas/code-scanning-alert-instance" } }, "required": [ "number", "created_at", "url", "html_url", "instances_url", "state", "dismissed_by", "dismissed_at", "dismissed_reason", "rule", "tool", "most_recent_instance" ] }