Apache Iceberg · Schema

AssertLastAssignedFieldId

The table's last assigned column id must match the requirement's `last-assigned-field-id`

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
type string
last-assigned-field-id integer
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-assert-last-assigned-field-id-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-assert-last-assigned-field-id-schema.json",
  "title": "AssertLastAssignedFieldId",
  "description": "The table's last assigned column id must match the requirement's `last-assigned-field-id`",
  "properties": {
    "type": {
      "type": "string",
      "const": "assert-last-assigned-field-id"
    },
    "last-assigned-field-id": {
      "type": "integer"
    }
  },
  "required": [
    "last-assigned-field-id"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/TableRequirement"
    }
  ],
  "type": "object"
}