{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventGatewayModifyHeaderRemoveAction", "title": "EventGatewayModifyHeaderRemoveAction", "description": "An action that removes a header by key.", "type": "object", "properties": { "op": { "type": "string", "const": "remove" }, "key": { "description": "The key of the header to remove.", "type": "string" } }, "required": [ "op", "key" ] }