{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayACLOperation", "title": "EventGatewayACLOperation", "description": "An Event Gateway operation to match against in an ACL rule.", "type": "object", "properties": { "name": { "type": "string", "enum": [ "all", "alter", "alter_configs", "create", "delete", "describe", "describe_configs", "idempotent_write", "read", "write" ], "x-speakeasy-unknown-values": "allow" } }, "required": [ "name" ] }