ListContainerItems

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

AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

Properties

Name Type Description
nextLink string Request URL that can be used to query next page of containers. Returned when total number of requested containers exceed maximum page size.
value array List of blobs containers returned.
View JSON Schema on GitHub

JSON Schema

azure-storage-account-list-container-items-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-schema/azure-storage-account-list-container-items-schema.json",
  "title": "ListContainerItems",
  "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"
}