{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/azure-storage-account/refs/heads/main/json-schema/azure-storage-account-immutability-policy-property-schema.json", "title": "ImmutabilityPolicyProperty", "description": "The properties of an ImmutabilityPolicy of a blob container.", "properties": { "immutabilityPeriodSinceCreationInDays": { "description": "The immutability period for the blobs in the container since the policy creation, in days.", "type": "integer" }, "state": { "description": "The ImmutabilityPolicy state of a blob container, possible values include: Locked and Unlocked.", "enum": [ "Locked", "Unlocked" ], "readOnly": true, "type": "string", "x-ms-enum": { "modelAsString": true, "name": "ImmutabilityPolicyState" } } }, "type": "object", "required": [ "immutabilityPeriodSinceCreationInDays" ] }