{ "type": "object", "description": "A validation error", "name": "ValidationError", "properties": { "message": { "type": "string", "description": "Error description" }, "line": { "type": "integer", "description": "Line number where the error occurred" }, "column": { "type": "integer", "description": "Column number where the error occurred" }, "category": { "type": "string", "description": "Error category" } }, "required": [ "message", "line" ], "$schema": "https://json-structure.org/draft/2020-12/schema" }