Apache Iceberg · Schema

UUIDTypeValue

UUID type values are serialized as a 36-character lowercase string in standard UUID format as specified by RFC-4122

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-uuid-type-value-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-uuid-type-value-schema.json",
  "title": "UUIDTypeValue",
  "description": "UUID type values are serialized as a 36-character lowercase string in standard UUID format as specified by RFC-4122",
  "type": "string",
  "format": "uuid",
  "pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$",
  "minLength": 36,
  "maxLength": 36,
  "example": "eb26bdb1-a1d8-4aa6-990e-da940875492c"
}