Azure Storage Account · JSON Structure

Azure Storage Account Restore Policy Properties Structure

The blob service properties for blob restore policy

Type: object Properties: 2 Required: 1
AzureBlob StorageCloud StorageFile StorageMicrosoftStorage

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

Properties

days enabled

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-account/refs/heads/main/json-structure/azure-storage-account-restore-policy-properties-structure.json",
  "description": "The blob service properties for blob restore policy",
  "properties": {
    "days": {
      "description": "how long this blob can be restored. It should be great than zero and less than DeleteRetentionPolicy.days.",
      "maximum": 365,
      "minimum": 1,
      "type": "integer"
    },
    "enabled": {
      "description": "Blob restore is enabled if set to true.",
      "type": "boolean"
    }
  },
  "type": "object",
  "required": [
    "enabled"
  ],
  "name": "RestorePolicyProperties"
}