{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/go/vet.json",
  "title": "go/vet",
  "description": "go vet and go build diagnostics, one per problem",
  "x-jsonize": {
    "definition": "go/vet",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string"
      },
      "line": {
        "type": "integer"
      },
      "column": {
        "type": "integer"
      },
      "message": {
        "type": "string"
      }
    },
    "required": [
      "path",
      "line",
      "column",
      "message"
    ]
  }
}
