Apache Pig · JSON Structure

Apache Pig Validation Error Structure

ValidationError schema from Apache Pig

Type: object Properties: 4
Big DataData AnalysisETLHadoopScriptingApacheOpen Source

ValidationError is a JSON Structure definition published by Apache Pig, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

line column message severity

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-pig/refs/heads/main/json-structure/apache-pig-validation-error-structure.json",
  "description": "ValidationError schema from Apache Pig",
  "type": "object",
  "properties": {
    "line": {
      "type": "int32",
      "example": 3
    },
    "column": {
      "type": "int32",
      "example": 10
    },
    "message": {
      "type": "string",
      "example": "Undefined alias: UNDEFINED_ALIAS"
    },
    "severity": {
      "type": "string",
      "enum": [
        "error",
        "warning"
      ],
      "example": "error"
    }
  },
  "name": "ValidationError"
}