Apache Iceberg · JSON Structure

Rest Catalog Open Api Schema Structure

Schema schema from Apache Iceberg REST Catalog API

Type: Properties: 0
ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

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

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

JSON Structure

Raw ↑
{
  "$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-schema-structure.json",
  "name": "Schema",
  "description": "Schema schema from Apache Iceberg REST Catalog API",
  "allOf": [
    {
      "$ref": "#/components/schemas/StructType"
    },
    {
      "type": "object",
      "properties": {
        "schema-id": {
          "type": "integer",
          "readOnly": true
        },
        "identifier-field-ids": {
          "type": "array",
          "items": {
            "type": "integer"
          }
        }
      }
    }
  ]
}