Matching pattern to forward your actions.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/email_rule_matcher", "title": "email_rule_matcher", "description": "Matching pattern to forward your actions.", "properties": { "field": { "description": "Field for type matcher.", "enum": [ "to" ], "example": "to", "type": "string" }, "type": { "description": "Type of matcher.", "enum": [ "literal" ], "example": "literal", "type": "string" }, "value": { "description": "Value for matcher.", "example": "[email protected]", "maxLength": 90, "type": "string" } }, "required": [ "type", "field", "value" ], "type": "object" }