{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/VirtualClusterNamespaceIdSelectorGlob", "title": "VirtualClusterNamespaceIdSelectorGlob", "type": "object", "properties": { "type": { "type": "string", "const": "glob" }, "glob": { "description": "Expose any id that matches this glob pattern (e.g., `my_id_*`).", "type": "string", "format": "glob", "minLength": 1, "pattern": "^[A-Za-z0-9._?*-]+$" } }, "required": [ "type", "glob" ] }