Match an entire email domain.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_domain_rule", "title": "Email domain", "description": "Match an entire email domain.", "properties": { "email_domain": { "properties": { "domain": { "description": "The email domain to match.", "example": "example.com", "type": "string" } }, "required": [ "domain" ], "type": "object" } }, "required": [ "email_domain" ], "type": "object" }