Apache Iceberg · Schema

StatisticsFile

StatisticsFile schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
snapshot-id integer
statistics-path string
file-size-in-bytes integer
file-footer-size-in-bytes integer
blob-metadata array
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-statistics-file-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-iceberg/refs/heads/main/json-schema/rest-catalog-open-api-statistics-file-schema.json",
  "title": "StatisticsFile",
  "description": "StatisticsFile schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "properties": {
    "snapshot-id": {
      "type": "integer",
      "format": "int64"
    },
    "statistics-path": {
      "type": "string"
    },
    "file-size-in-bytes": {
      "type": "integer",
      "format": "int64"
    },
    "file-footer-size-in-bytes": {
      "type": "integer",
      "format": "int64"
    },
    "blob-metadata": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/BlobMetadata"
      }
    }
  },
  "required": [
    "snapshot-id",
    "statistics-path",
    "file-size-in-bytes",
    "file-footer-size-in-bytes",
    "blob-metadata"
  ]
}