{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AllowedCIDR", "title": "AllowedCIDR", "type": "object", "description": "Allowed IP/CIDR for cluster access", "properties": { "id": { "type": "string", "format": "uuid", "description": "Allowed CIDR UUID" }, "cidr": { "type": "string", "description": "IP address or CIDR range" }, "comment": { "type": "string", "description": "Optional comment" }, "expiresAt": { "type": "string", "format": "date-time", "description": "Expiration date for temporary access" }, "status": { "type": "string", "description": "Status of the allowed CIDR" }, "audit": { "$ref": "#/components/schemas/AuditInfo" } } }