Apache Iceberg · JSON Structure

Rest Catalog Open Api Commit Report Structure

CommitReport schema from Apache Iceberg REST Catalog API

Type: object Properties: 6 Required: 5
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

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

Properties

table-name snapshot-id sequence-number operation metrics metadata

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-iceberg/refs/heads/main/json-structure/rest-catalog-open-api-commit-report-structure.json",
  "name": "CommitReport",
  "description": "CommitReport schema from Apache Iceberg REST Catalog API",
  "properties": {
    "table-name": {
      "type": "string"
    },
    "snapshot-id": {
      "type": "int64"
    },
    "sequence-number": {
      "type": "int64"
    },
    "operation": {
      "type": "string"
    },
    "metrics": {
      "$ref": "#/components/schemas/Metrics"
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "table-name",
    "snapshot-id",
    "sequence-number",
    "operation",
    "metrics"
  ]
}