{ "$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" }