Azure Storage Accounts · JSON Structure

Azure Storage Accounts Management Policy Filter Structure

Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters.

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

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

Properties

blobTypes prefixMatch

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-management-policy-filter-structure.json",
  "description": "Filters limit rule actions to a subset of blobs within the storage account. If multiple filters are defined, a logical AND is performed on all filters. ",
  "properties": {
    "blobTypes": {
      "description": "An array of predefined enum values. Only blockBlob is supported.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "prefixMatch": {
      "description": "An array of strings for prefixes to be match.",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object",
  "required": [
    "blobTypes"
  ],
  "name": "ManagementPolicyFilter"
}