Apache Iceberg · JSON Structure

Rest Catalog Open Api Commit Table Request Structure

CommitTableRequest schema from Apache Iceberg REST Catalog API

Type: object Properties: 3 Required: 2
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

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

Properties

identifier requirements updates

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-table-request-structure.json",
  "name": "CommitTableRequest",
  "description": "CommitTableRequest schema from Apache Iceberg REST Catalog API",
  "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"
  ]
}