Matches an email address from a list.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/access_email_list_rule", "title": "Email list", "description": "Matches an email address from a list.", "properties": { "email_list": { "properties": { "id": { "description": "The ID of a previously created email list.", "example": "aa0a4aab-672b-4bdb-bc33-a59f1130a11f", "type": "string" } }, "required": [ "id" ], "type": "object" } }, "required": [ "email_list" ], "type": "object" }