Apache Iceberg · JSON Structure

Rest Catalog Open Api Create Namespace Response Structure

CreateNamespaceResponse schema from Apache Iceberg REST Catalog API

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

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

Properties

namespace 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-namespace-response-structure.json",
  "name": "CreateNamespaceResponse",
  "description": "CreateNamespaceResponse schema from Apache Iceberg REST Catalog API",
  "properties": {
    "namespace": {
      "$ref": "#/components/schemas/Namespace"
    },
    "properties": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Properties stored on the namespace, if supported by the server.",
      "example": {
        "owner": "Ralph",
        "created_at": "1452120468"
      },
      "default": {}
    }
  },
  "required": [
    "namespace"
  ]
}