linode · Schema

PaginatedObjectStorageBucketList

View JSON Schema on GitHub

JSON Schema

linode-paginatedobjectstoragebucketlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedObjectStorageBucketList",
  "title": "PaginatedObjectStorageBucketList",
  "allOf": [
    {
      "$ref": "#/components/schemas/Pagination"
    },
    {
      "type": "object",
      "properties": {
        "data": {
          "type": "array",
          "items": {
            "$ref": "#/components/schemas/ObjectStorageBucket"
          }
        }
      }
    }
  ]
}