Apache Iceberg · Schema

CommitTableRequest

CommitTableRequest schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
identifier object Table identifier to update; must be present for CommitTransactionRequest
requirements array
updates array
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-commit-table-request-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-table-request-schema.json",
  "title": "CommitTableRequest",
  "description": "CommitTableRequest schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "properties": {
    "identifier": {
      "description": "Table identifier to update; must be present for CommitTransactionRequest",
      "$ref": "#/components/schemas/TableIdentifier"
    },
    "requirements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TableRequirement"
      }
    },
    "updates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TableUpdate"
      }
    }
  },
  "required": [
    "requirements",
    "updates"
  ]
}