Matches an IP address block.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_ip_rule", "title": "IP ranges", "description": "Matches an IP address block.", "properties": { "ip": { "properties": { "ip": { "description": "An IPv4 or IPv6 CIDR block.", "example": "2400:cb00:21:10a::/64", "type": "string" } }, "required": [ "ip" ], "type": "object" } }, "required": [ "ip" ], "type": "object" }