Apache Ozone · JSON Structure

Apache Ozone Bucket Structure

Bucket schema from Apache Ozone

Type: object Properties: 3
Distributed StorageHadoopObject StorageS3-CompatibleApacheOpen Source

Bucket is a JSON Structure definition published by Apache Ozone, describing 3 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name creationDate storageClass

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/apache-ozone/refs/heads/main/json-structure/apache-ozone-bucket-structure.json",
  "description": "Bucket schema from Apache Ozone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "my-bucket"
    },
    "creationDate": {
      "type": "datetime",
      "example": "2026-04-19T10:00:00Z"
    },
    "storageClass": {
      "type": "string",
      "example": "STANDARD"
    }
  },
  "name": "Bucket"
}