Apache Iceberg · JSON Structure

Rest Catalog Open Api Update Namespace Properties Response Structure

UpdateNamespacePropertiesResponse schema from Apache Iceberg REST Catalog API

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

UpdateNamespacePropertiesResponse 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

updated removed missing

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-response-structure.json",
  "name": "UpdateNamespacePropertiesResponse",
  "description": "UpdateNamespacePropertiesResponse schema from Apache Iceberg REST Catalog API",
  "properties": {
    "updated": {
      "type": "array",
      "description": "List of property keys that were added or updated",
      "uniqueItems": true,
      "items": {
        "type": "string"
      }
    },
    "removed": {
      "type": "array",
      "description": "List of properties that were removed",
      "items": {
        "type": "string"
      }
    },
    "missing": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of properties requested for removal that were not found in the namespace's properties. Represents a partial success response. Server's do not need to implement this.",
      "nullable": true
    }
  },
  "required": [
    "updated",
    "removed"
  ]
}