Amazon S3 API · JSON Structure

S3 Object Structure

An object consists of data and its descriptive metadata.

Type: object Properties: 0
Cloud StorageObject StorageStorage

S3 Object Structure is a JSON Structure definition published by Amazon S3 API. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

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

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "title": "Object",
  "type": "object",
  "description": "An object consists of data and its descriptive metadata.",
  "fields": [
    {
      "name": "Key",
      "type": "string"
    },
    {
      "name": "LastModified",
      "type": "string"
    },
    {
      "name": "ETag",
      "type": "string"
    },
    {
      "name": "ChecksumAlgorithm",
      "type": "string"
    },
    {
      "name": "Size",
      "type": "string"
    },
    {
      "name": "StorageClass",
      "type": "string"
    },
    {
      "name": "Owner",
      "type": "string"
    }
  ]
}