code-scanning-alert-location

Describe a region within a file for the alert.

APIs.ioEngineeringPlatform

Properties

Name Type Description
path string
start_line integer
end_line integer
start_column integer
end_column integer
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-code-scanning-alert-location-schema.json Raw ↑
{
  "$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"
    }
  }
}