Apache Iceberg · JSON Structure

Rest Catalog Open Api Encrypted Key Structure

EncryptedKey schema from Apache Iceberg REST Catalog API

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

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

Properties

key-id encrypted-key-metadata encrypted-by-id properties

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-encrypted-key-structure.json",
  "name": "EncryptedKey",
  "description": "EncryptedKey schema from Apache Iceberg REST Catalog API",
  "properties": {
    "key-id": {
      "type": "string"
    },
    "encrypted-key-metadata": {
      "type": "string",
      "format": "byte",
      "contentEncoding": "base64"
    },
    "encrypted-by-id": {
      "type": "string"
    },
    "properties": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "key-id",
    "encrypted-key-metadata"
  ]
}