{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayACLResourceName", "title": "EventGatewayACLResourceName", "description": "An Event Gateway resource name to match against in an ACL rule.", "type": "object", "properties": { "match": { "description": "Currently supported are exact matches and globs.\nAll `*` characters are interpreted as globs, i.e. they match zero or more of any character.\n", "type": "string", "format": "glob" } }, "required": [ "match" ] }