Apache Ozone · JSON Structure

Apache Ozone Object Structure

Object schema from Apache Ozone

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

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

Properties

key lastModified etag size storageClass owner

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-object-structure.json",
  "description": "Object schema from Apache Ozone",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "example": "data/file.csv"
    },
    "lastModified": {
      "type": "datetime",
      "example": "2026-04-19T10:00:00Z"
    },
    "etag": {
      "type": "string",
      "example": "\"a1b2c3d4e5f6\""
    },
    "size": {
      "type": "int32",
      "example": 1048576
    },
    "storageClass": {
      "type": "string",
      "example": "STANDARD"
    },
    "owner": {
      "$ref": "#/components/schemas/Owner"
    }
  },
  "name": "Object"
}