AddSchemaUpdate schema from Apache Iceberg REST Catalog API
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format
Properties
Name
Type
Description
action
string
schema
object
last-column-id
integer
This optional field is **DEPRECATED for REMOVAL** since it more safe to handle this internally, and shouldn't be exposed to the clients. The highest assigned column ID for the table. This is used to e
{
"$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-add-schema-update-schema.json",
"title": "AddSchemaUpdate",
"description": "AddSchemaUpdate schema from Apache Iceberg REST Catalog API",
"properties": {
"action": {
"type": "string",
"const": "add-schema"
},
"schema": {
"$ref": "#/components/schemas/Schema"
},
"last-column-id": {
"type": "integer",
"deprecated": true,
"description": "This optional field is **DEPRECATED for REMOVAL** since it more safe to handle this internally, and shouldn't be exposed to the clients.\nThe highest assigned column ID for the table. This is used to ensure columns are always assigned an unused ID when evolving schemas. When omitted, it will be computed on the server side."
}
},
"required": [
"schema"
],
"allOf": [
{
"$ref": "#/components/schemas/BaseUpdate"
}
],
"type": "object"
}