Apache Pig · Schema

ScriptRequest

ScriptRequest schema from Apache Pig

Big DataData AnalysisETLHadoopScriptingApacheOpen Source

Properties

Name Type Description
script string
View JSON Schema on GitHub

JSON Schema

apache-pig-script-request-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-script-request-schema.json",
  "title": "ScriptRequest",
  "description": "ScriptRequest schema from Apache Pig",
  "type": "object",
  "properties": {
    "script": {
      "type": "string",
      "example": "A = LOAD 'data.csv';\nB = FOREACH A GENERATE $0, $1;"
    }
  },
  "required": [
    "script"
  ]
}