Apache Iceberg · JSON Structure

Rest Catalog Open Api Update Namespace Properties Request Structure

UpdateNamespacePropertiesRequest schema from Apache Iceberg REST Catalog API

Type: object Properties: 2
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

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

Properties

removals 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-update-namespace-properties-request-structure.json",
  "name": "UpdateNamespacePropertiesRequest",
  "description": "UpdateNamespacePropertiesRequest schema from Apache Iceberg REST Catalog API",
  "properties": {
    "removals": {
      "type": "array",
      "uniqueItems": true,
      "items": {
        "type": "string"
      },
      "example": [
        "department",
        "access_group"
      ]
    },
    "updates": {
      "type": "object",
      "example": {
        "owner": "Hank Bendickson"
      },
      "additionalProperties": {
        "type": "string"
      }
    }
  }
}