Apache Iceberg · Schema

AsyncPlanningResult

AsyncPlanningResult schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen SourceTable Format

Properties

Name Type Description
status object
plan-id string ID used to track a planning request
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-async-planning-result-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-async-planning-result-schema.json",
  "title": "AsyncPlanningResult",
  "description": "AsyncPlanningResult schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "properties": {
    "status": {
      "$ref": "#/components/schemas/PlanStatus",
      "const": "submitted"
    },
    "plan-id": {
      "description": "ID used to track a planning request",
      "type": "string"
    }
  },
  "required": [
    "status",
    "plan-id"
  ]
}