Apache Iceberg · Schema

AssignUUIDUpdate

Assigning a UUID to a table/view should only be done when creating the table/view. It is not safe to re-assign the UUID if a table/view already has a UUID assigned

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
action string
uuid string
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-assign-uuid-update-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-assign-uuid-update-schema.json",
  "title": "AssignUUIDUpdate",
  "description": "Assigning a UUID to a table/view should only be done when creating the table/view. It is not safe to re-assign the UUID if a table/view already has a UUID assigned",
  "properties": {
    "action": {
      "type": "string",
      "const": "assign-uuid"
    },
    "uuid": {
      "type": "string"
    }
  },
  "required": [
    "uuid"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseUpdate"
    }
  ],
  "type": "object"
}