Apache ORC · JSON Structure

Apache Orc Column Statistics Response Structure

ColumnStatisticsResponse schema from Apache ORC

Type: object Properties: 2
Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen Source

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

Properties

filePath statistics

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-column-statistics-response-structure.json",
  "description": "ColumnStatisticsResponse schema from Apache ORC",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "example": "data/sales.orc"
    },
    "statistics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnStatistics"
      }
    }
  },
  "name": "ColumnStatisticsResponse"
}