Apache ORC · Schema

ColumnStatisticsResponse

ColumnStatisticsResponse schema from Apache ORC

Big DataColumnar StorageCompressionFile FormatHadoopApacheOpen Source

Properties

Name Type Description
filePath string
statistics array
View JSON Schema on GitHub

JSON Schema

apache-orc-column-statistics-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-orc/refs/heads/main/json-schema/apache-orc-column-statistics-response-schema.json",
  "title": "ColumnStatisticsResponse",
  "description": "ColumnStatisticsResponse schema from Apache ORC",
  "type": "object",
  "properties": {
    "filePath": {
      "type": "string",
      "example": "data/sales.orc"
    },
    "statistics": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ColumnStatistics"
      }
    }
  }
}