Azure Storage Accounts · JSON Structure

Azure Storage Accounts List Container Items Structure

Response schema. Contains list of blobs returned, and if paging is requested or required, a URL to next page of containers.

Type: object Properties: 2
AzureBlob StorageCloud StorageFile StorageQueue StorageStorageTable Storage

ListContainerItems is a JSON Structure definition published by Azure Storage Accounts, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

nextLink value

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/azure-storage-accounts/refs/heads/main/json-structure/azure-storage-accounts-list-container-items-structure.json",
  "description": "Response schema. Contains list of blobs returned, and if paging is requested or required, a URL to next page of containers.",
  "properties": {
    "nextLink": {
      "description": "Request URL that can be used to query next page of containers. Returned when total number of requested containers exceed maximum page size.",
      "readOnly": true,
      "type": "string"
    },
    "value": {
      "description": "List of blobs containers returned.",
      "items": {
        "$ref": "#/definitions/ListContainerItem"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object",
  "name": "ListContainerItems"
}