ValidationError schema from Apache Pig
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pig/refs/heads/main/json-schema/apache-pig-validation-error-schema.json", "title": "ValidationError", "description": "ValidationError schema from Apache Pig", "type": "object", "properties": { "line": { "type": "integer", "example": 3 }, "column": { "type": "integer", "example": 10 }, "message": { "type": "string", "example": "Undefined alias: UNDEFINED_ALIAS" }, "severity": { "type": "string", "enum": [ "error", "warning" ], "example": "error" } } }