Apache Iceberg · JSON Structure

Rest Catalog Open Api Value Map Structure

ValueMap schema from Apache Iceberg REST Catalog API

Type: object Properties: 2
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

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

Properties

keys values

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-value-map-structure.json",
  "name": "ValueMap",
  "description": "ValueMap schema from Apache Iceberg REST Catalog API",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/IntegerTypeValue"
      },
      "description": "List of integer column ids for each corresponding value"
    },
    "values": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PrimitiveTypeValue"
      },
      "description": "List of primitive type values, matched to 'keys' by index"
    }
  },
  "example": {
    "keys": [
      1,
      2
    ],
    "values": [
      100,
      "test"
    ]
  }
}