Azure Storage Accounts · JSON Structure

Azure Storage Accounts Management Policy Definition Structure

An object that defines the Lifecycle rule. Each definition is made up with a filters set and an actions set.

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

ManagementPolicyDefinition 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

actions filters

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-definition-structure.json",
  "description": "An object that defines the Lifecycle rule. Each definition is made up with a filters set and an actions set.",
  "properties": {
    "actions": {
      "$ref": "#/definitions/ManagementPolicyAction",
      "description": "An object that defines the action set."
    },
    "filters": {
      "$ref": "#/definitions/ManagementPolicyFilter",
      "description": "An object that defines the filter set."
    }
  },
  "type": "object",
  "required": [
    "actions"
  ],
  "name": "ManagementPolicyDefinition"
}