The network rule set for a container registry.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-network-rule-set-schema.json", "title": "NetworkRuleSet", "description": "The network rule set for a container registry.", "type": "object", "properties": { "defaultAction": { "default": "Allow", "description": "The default action of allow or deny when no other rules match.", "enum": [ "Allow", "Deny" ], "type": "string", "x-ms-enum": { "modelAsString": true, "name": "DefaultAction" } }, "ipRules": { "description": "The IP ACL rules.", "items": { "$ref": "#/definitions/IPRule" }, "type": "array" }, "virtualNetworkRules": { "description": "The virtual network rules.", "items": { "$ref": "#/definitions/VirtualNetworkRule" }, "type": "array" } }, "required": [ "defaultAction" ] }