{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/actionlint/default.json",
  "title": "actionlint/default",
  "description": "actionlint errors, with or without the source excerpt",
  "x-jsonize": {
    "definition": "actionlint/default",
    "version": 1
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "path": {
        "type": "string"
      },
      "line": {
        "type": "integer"
      },
      "column": {
        "type": "integer"
      },
      "message": {
        "type": "string"
      },
      "rule": {
        "type": "string"
      }
    },
    "required": [
      "path",
      "line",
      "column",
      "message",
      "rule"
    ]
  }
}
