Apache Pig · Schema

ValidationError

ValidationError schema from Apache Pig

Big DataData AnalysisETLHadoopScriptingApacheOpen-Source

Properties

Name Type Description
line integer
column integer
message string
severity string
View JSON Schema on GitHub

JSON Schema

apache-pig-validation-error-schema.json Raw ↑
{
  "$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"
    }
  }
}