{
    "$id": "https://schemas.allicator.co.uk/common/email/v2.json",
    "$schema": "https://json-schema.org/draft/2020-12/schema",
    "$comment": "https://www.rfc-editor.org/info/rfc5322/",
    "title": "Email address",
    "description": "As defined by IETF RFC 5322",
    "format": "email",
    "examples": [ "user@example.com", "john.doe123@subdomain.com" ],
    "type": "string",
    "pattern": "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$"
}