Apache Iceberg · JSON Structure

Rest Catalog Open Api Set Snapshot Ref Update Structure

SetSnapshotRefUpdate schema from Apache Iceberg REST Catalog API

Type: object Properties: 2 Required: 1
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

SetSnapshotRefUpdate is a JSON Structure definition published by Apache Iceberg, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

action ref-name

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-iceberg/refs/heads/main/json-structure/rest-catalog-open-api-set-snapshot-ref-update-structure.json",
  "name": "SetSnapshotRefUpdate",
  "description": "SetSnapshotRefUpdate schema from Apache Iceberg REST Catalog API",
  "properties": {
    "action": {
      "type": "string",
      "const": "set-snapshot-ref"
    },
    "ref-name": {
      "type": "string"
    }
  },
  "required": [
    "ref-name"
  ],
  "allOf": [
    {
      "$ref": "#/components/schemas/BaseUpdate"
    },
    {
      "$ref": "#/components/schemas/SnapshotReference"
    }
  ]
}