Apache Iceberg · JSON Structure

Rest Catalog Open Api Async Planning Result Structure

AsyncPlanningResult schema from Apache Iceberg REST Catalog API

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

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

Properties

status plan-id

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