StatisticsFile schema from Apache Iceberg REST Catalog API
{ "$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" ] }