Apache Iceberg · JSON Structure

Rest Catalog Open Api Create View Request Structure

CreateViewRequest schema from Apache Iceberg REST Catalog API

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

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

Properties

name location schema view-version properties

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-create-view-request-structure.json",
  "name": "CreateViewRequest",
  "description": "CreateViewRequest schema from Apache Iceberg REST Catalog API",
  "properties": {
    "name": {
      "type": "string"
    },
    "location": {
      "type": "string"
    },
    "schema": {
      "$ref": "#/components/schemas/Schema"
    },
    "view-version": {
      "$ref": "#/components/schemas/ViewVersion",
      "description": "The view version to create, will replace the schema-id sent within the view-version with the id assigned to the provided schema"
    },
    "properties": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      }
    }
  },
  "required": [
    "name",
    "schema",
    "view-version",
    "properties"
  ]
}