email-security_CreateBlockedSender

APIs.ioEngineeringPlatform

Properties

Name Type Description
comments string
is_regex boolean
pattern string
pattern_type object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-email-security-createblockedsender-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/email-security_CreateBlockedSender",
  "title": "email-security_CreateBlockedSender",
  "additionalProperties": false,
  "example": {
    "comments": "block sender with email [email protected]",
    "is_regex": false,
    "pattern": "[email protected]",
    "pattern_type": "EMAIL"
  },
  "properties": {
    "comments": {
      "nullable": true,
      "type": "string"
    },
    "is_regex": {
      "type": "boolean"
    },
    "pattern": {
      "minLength": 1,
      "type": "string"
    },
    "pattern_type": {
      "$ref": "#/components/schemas/email-security_PatternType"
    }
  },
  "required": [
    "pattern",
    "is_regex",
    "pattern_type"
  ],
  "type": "object"
}