Apache Iceberg · JSON Structure

Rest Catalog Open Api List Type Structure

ListType schema from Apache Iceberg REST Catalog API

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

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

Properties

type element-id element element-required

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-list-type-structure.json",
  "name": "ListType",
  "description": "ListType schema from Apache Iceberg REST Catalog API",
  "properties": {
    "type": {
      "type": "string",
      "const": "list"
    },
    "element-id": {
      "type": "integer"
    },
    "element": {
      "$ref": "#/components/schemas/Type"
    },
    "element-required": {
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "element-id",
    "element",
    "element-required"
  ]
}