{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-structure/source-code-api-validation-error-structure.json", "name": "ValidationError", "description": "A validation error", "type": "object", "properties": { "message": { "type": "string", "description": "Error description", "example": "Syntax error: unexpected end of template" }, "line": { "type": "int32", "description": "Line number where the error occurred", "example": 42 }, "column": { "type": "int32", "description": "Column number where the error occurred", "example": 15 }, "category": { "type": "string", "description": "Error category", "example": "HUBL_SYNTAX" } }, "required": [ "message", "line" ] }