Apache Iceberg · Schema

CommitReport

CommitReport schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
table-name string
snapshot-id integer
sequence-number integer
operation string
metrics object
metadata object
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-commit-report-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-commit-report-schema.json",
  "title": "CommitReport",
  "description": "CommitReport schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "properties": {
    "table-name": {
      "type": "string"
    },
    "snapshot-id": {
      "type": "integer",
      "format": "int64"
    },
    "sequence-number": {
      "type": "integer",
      "format": "int64"
    },
    "operation": {
      "type": "string"
    },
    "metrics": {
      "$ref": "#/components/schemas/Metrics"
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "table-name",
    "snapshot-id",
    "sequence-number",
    "operation",
    "metrics"
  ]
}