Apache Iceberg · Schema

CreateNamespaceResponse

CreateNamespaceResponse schema from Apache Iceberg REST Catalog API

ACIDAnalyticsApacheData LakeLakehouseOpen-SourceTable Format

Properties

Name Type Description
namespace object
properties object Properties stored on the namespace, if supported by the server.
View JSON Schema on GitHub

JSON Schema

rest-catalog-open-api-create-namespace-response-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-create-namespace-response-schema.json",
  "title": "CreateNamespaceResponse",
  "description": "CreateNamespaceResponse schema from Apache Iceberg REST Catalog API",
  "type": "object",
  "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"
  ]
}