Apache Ozone · JSON Structure

Apache Ozone List Objects Result Structure

ListObjectsResult schema from Apache Ozone

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

ListObjectsResult 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

name prefix maxKeys isTruncated nextContinuationToken contents

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-list-objects-result-structure.json",
  "description": "ListObjectsResult schema from Apache Ozone",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "my-bucket"
    },
    "prefix": {
      "type": "string",
      "example": "data/"
    },
    "maxKeys": {
      "type": "int32",
      "example": 1000
    },
    "isTruncated": {
      "type": "boolean",
      "example": false
    },
    "nextContinuationToken": {
      "type": "string"
    },
    "contents": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Object"
      }
    }
  },
  "name": "ListObjectsResult"
}