Apache Iceberg · Schema

AssertCreate

The table must not already exist; used for create transactions

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
type string
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-assert-create-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-create-schema.json",
  "title": "AssertCreate",
  "description": "The table must not already exist; used for create transactions",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "assert-create"
    }
  },
  "required": [
    "type"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/TableRequirement"
    }
  ]
}