Apache Iceberg · JSON Structure

Rest Catalog Open Api Commit View Request Structure

CommitViewRequest schema from Apache Iceberg REST Catalog API

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

CommitViewRequest is a JSON Structure definition published by Apache Iceberg, describing 3 properties, of which 1 is 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-view-request-structure.json",
  "name": "CommitViewRequest",
  "description": "CommitViewRequest schema from Apache Iceberg REST Catalog API",
  "properties": {
    "identifier": {
      "description": "View identifier to update",
      "$ref": "#/components/schemas/TableIdentifier"
    },
    "requirements": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ViewRequirement"
      }
    },
    "updates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ViewUpdate"
      }
    }
  },
  "required": [
    "updates"
  ]
}