Apache Iceberg · JSON Structure

Rest Catalog Open Api Sort Field Structure

SortField schema from Apache Iceberg REST Catalog API

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

SortField 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

source-id transform direction null-order

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-sort-field-structure.json",
  "name": "SortField",
  "description": "SortField schema from Apache Iceberg REST Catalog API",
  "properties": {
    "source-id": {
      "type": "integer"
    },
    "transform": {
      "$ref": "#/components/schemas/Transform"
    },
    "direction": {
      "$ref": "#/components/schemas/SortDirection"
    },
    "null-order": {
      "$ref": "#/components/schemas/NullOrder"
    }
  },
  "required": [
    "source-id",
    "transform",
    "direction",
    "null-order"
  ]
}