Apache ORC · JSON Structure

Apache Orc Merge Request Structure

MergeRequest schema from Apache ORC

Type: object Properties: 2 Required: 2
Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen Source

MergeRequest is a JSON Structure definition published by Apache ORC, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

inputPaths outputPath

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-orc/refs/heads/main/json-structure/apache-orc-merge-request-structure.json",
  "description": "MergeRequest schema from Apache ORC",
  "type": "object",
  "properties": {
    "inputPaths": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "example": [
        "data/part-001.orc",
        "data/part-002.orc"
      ]
    },
    "outputPath": {
      "type": "string",
      "example": "data/merged.orc"
    }
  },
  "required": [
    "inputPaths",
    "outputPath"
  ],
  "name": "MergeRequest"
}