Azure Blob Storage · Schema

ContainerList

The list of containers returned by the List Containers operation.

AzureBlobsCloud StorageMicrosoftObject StorageStorage

Properties

Name Type Description
ServiceEndpoint string The service endpoint URL
MaxResults integer Maximum number of results requested
Prefix string The prefix filter applied
Containers array The list of containers
NextMarker string Continuation token for the next page of results
View JSON Schema on GitHub

JSON Schema

azure-blob-storage-containerlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ContainerList",
  "title": "ContainerList",
  "type": "object",
  "description": "The list of containers returned by the List Containers operation.",
  "properties": {
    "ServiceEndpoint": {
      "type": "string",
      "description": "The service endpoint URL"
    },
    "MaxResults": {
      "type": "integer",
      "description": "Maximum number of results requested"
    },
    "Prefix": {
      "type": "string",
      "description": "The prefix filter applied"
    },
    "Containers": {
      "type": "array",
      "description": "The list of containers",
      "items": {
        "$ref": "#/components/schemas/Container"
      }
    },
    "NextMarker": {
      "type": "string",
      "description": "Continuation token for the next page of results"
    }
  }
}