Email Address
Standard email address (RFC 5322 simplified). Format: local@domain. Universal format but may include internationalized domain names (IDN).
Email Address
identity.person.emailStandard email address (RFC 5322 simplified). Format: local@domain. Universal format but may include internationalized domain names (IDN).
Domain
identity
Category
person
Casts to
VARCHAR
Scope
Universal
Try it
CLI
$ finetype infer -i "[email protected]" --mode column
→ identity.person.emailDuckDB
Detect
SELECT ft_infer('[email protected]');
-- → 'identity.person.email'Cast expression
LOWER(CAST({col} AS VARCHAR))Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'identity.person.email';Struct Expansion
Expression
domain: REGEXP_EXTRACT({col}, '@(.+)$')
local: REGEXP_EXTRACT({col}, '^([^@]+)')JSON Schema
finetype taxonomy identity.person.email -o json-schema
{
"$id": "https://meridian.online/schemas/identity.person.email",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Standard email address (RFC 5322 simplified). Format: local@domain. Universal format but may include internationalized domain names (IDN).",
"examples": [
"[email protected]",
"[email protected]",
"[email protected]"
],
"maxLength": 254,
"minLength": 5,
"pattern": "^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$",
"title": "Email Address",
"type": "string",
"x-finetype-label": "identity.person.email",
"x-finetype-pii": true
}Examples
Aliases
email_address