Actions pattern.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/email_rule_action", "title": "email_rule_action", "description": "Actions pattern.", "properties": { "type": { "description": "Type of supported action.", "enum": [ "drop", "forward", "worker" ], "example": "forward", "type": "string" }, "value": { "items": { "description": "Value for action.", "example": "[email protected]", "maxLength": 90, "type": "string" }, "type": "array" } }, "required": [ "type", "value" ], "type": "object" }