email_rule_catchall-action

Action for the catch-all routing rule.

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string Type of action for catch-all rule.
value array
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-email-rule-catchall-action-schema.json Raw ↑
{
  "$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"
}