{ "$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-ip-rule-schema.json", "title": "IPRule", "description": "IP rule with specific IP or IP range in CIDR format.", "properties": { "action": { "default": "Allow", "description": "The action of IP ACL rule.", "enum": [ "Allow" ], "type": "string", "x-ms-enum": { "modelAsString": false, "name": "Action" } }, "value": { "description": "Specifies the IP or IP range in CIDR format. Only IPV4 address is allowed.", "type": "string", "x-ms-client-name": "IPAddressOrRange" } }, "type": "object", "required": [ "value" ] }