email_rule_action

Actions pattern.

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string Type of supported action.
value array
View JSON Schema on GitHub

JSON Schema

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