Azure Storage Accounts · JSON Structure

Azure Storage Accounts Blob Restore Range Structure

Blob range

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

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

Properties

endRange startRange

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-blob-restore-range-structure.json",
  "description": "Blob range",
  "properties": {
    "endRange": {
      "description": "Blob end range. Empty means account end.",
      "type": "string"
    },
    "startRange": {
      "description": "Blob start range. Empty means account start.",
      "type": "string"
    }
  },
  "type": "object",
  "required": [
    "startRange",
    "endRange"
  ],
  "name": "BlobRestoreRange"
}