github.com/mistwind/reviewdog@v0.0.0-20230322024206-9cfa11856d58/proto/rdf/jsonschema/Position.jsonschema (about)

     1  {
     2      "$schema": "http://json-schema.org/draft-04/schema#",
     3      "properties": {
     4          "line": {
     5              "type": "integer",
     6              "description": "Line number, starting at 1.\n Optional."
     7          },
     8          "column": {
     9              "type": "integer",
    10              "description": "Column number, starting at 1 (byte count in UTF-8).\n Example: 'a𐐀b'\n  The column of a: 1\n  The column of 𐐀: 2\n  The column of b: 6 since 𐐀 is represented with 4 bytes in UTF-8.\n Optional."
    11          }
    12      },
    13      "additionalProperties": true,
    14      "type": "object"
    15  }