Apache Iceberg · Schema

ListType

ListType schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
type string
element-id integer
element object
element-required boolean
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-list-type-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-list-type-schema.json",
  "title": "ListType",
  "description": "ListType schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "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"
  ]
}