Apache Iceberg · Schema

AssertTableUUID

The table UUID must match the requirement's `uuid`

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

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

JSON Schema

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