Describe a region within a file for the alert.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/code-scanning-alert-location", "title": "code-scanning-alert-location", "type": "object", "description": "Describe a region within a file for the alert.", "properties": { "path": { "type": "string" }, "start_line": { "type": "integer" }, "end_line": { "type": "integer" }, "start_column": { "type": "integer" }, "end_column": { "type": "integer" } } }