email_rule_matcher

Matching pattern to forward your actions.

APIs.ioEngineeringPlatform

Properties

Name Type Description
field string Field for type matcher.
type string Type of matcher.
value string Value for matcher.
View JSON Schema on GitHub

JSON Schema

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