Matches a specific email.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_email_rule", "title": "Email", "description": "Matches a specific email.", "properties": { "email": { "properties": { "email": { "description": "The email of the user.", "example": "[email protected]", "format": "email", "type": "string" } }, "required": [ "email" ], "type": "object" } }, "required": [ "email" ], "type": "object" }