ListObjects

Response containing a list of objects.

Cloud ComputingEnterprise CloudInfrastructure as a ServiceOraclePlatform as a Service

Properties

Name Type Description
objects array List of object summaries.
prefixes array Prefixes for pseudo-directory grouping.
nextStartWith string Object name to resume listing.
View JSON Schema on GitHub

JSON Schema

object-storage-list-objects-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/oracle-cloud/refs/heads/main/json-schema/object-storage-list-objects-schema.json",
  "title": "ListObjects",
  "description": "Response containing a list of objects.",
  "type": "object",
  "properties": {
    "objects": {
      "type": "array",
      "description": "List of object summaries.",
      "example": "[{'name': 'documents/report.pdf', 'size': 1048576, 'md5': 'aGVsbG93b3JsZA==', 'timeCreated': '2026-04-18T10:30:00Z', 'timeModified': '2026-04-18T10:30:00Z', 'storageTier': 'Standard'}]",
      "items": {
        "type": "object"
      }
    },
    "prefixes": {
      "type": "array",
      "description": "Prefixes for pseudo-directory grouping.",
      "example": "['example-value']",
      "items": {
        "type": "string"
      }
    },
    "nextStartWith": {
      "type": "string",
      "description": "Object name to resume listing.",
      "example": "example-value"
    }
  }
}