{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/firewall_schemas-cidr_configuration", "title": "An IP address range configuration.", "properties": { "target": { "description": "The configuration target. You must set the target to `ip_range` when specifying an IP address range in the Zone Lockdown rule.", "enum": [ "ip_range" ], "example": "ip_range" }, "value": { "description": "The IP address range to match. You can only use prefix lengths `/16` and `/24`.", "example": "198.51.100.4/16", "type": "string" } } }