Action for the catch-all routing rule.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/email_rule_catchall-action", "title": "email_rule_catchall-action", "description": "Action for the catch-all routing rule.", "properties": { "type": { "description": "Type of action for catch-all rule.", "enum": [ "drop", "forward", "worker" ], "example": "forward", "type": "string" }, "value": { "items": { "description": "Input value for action.", "example": "[email protected]", "maxLength": 90, "type": "string" }, "type": "array" } }, "required": [ "type" ], "type": "object" }