PayPal Email
Email address associated with a PayPal account. Format is standard email.
PayPal Email
finance.payment.paypal_emailEmail address associated with a PayPal account. Format is standard email.
Domain
finance
Category
payment
Casts to
VARCHAR
Scope
Universal
Try it
CLI
$ finetype infer -i "[email protected]"
→ finance.payment.paypal_emailDuckDB
Detect
SELECT finetype('[email protected]');
-- → 'finance.payment.paypal_email'Cast expression
LOWER(CAST({col} AS VARCHAR))Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'finance.payment.paypal_email';Struct Expansion
Expression
domain: REGEXP_EXTRACT(LOWER({col}), '@(.+)$')
local: REGEXP_EXTRACT(LOWER({col}), '^([^@]+)')JSON Schema
finetype schema finance.payment.paypal_email
{
"$id": "https://meridian.online/schemas/finance.payment.paypal_email",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Email address associated with a PayPal account. Format is standard email.",
"examples": [
"[email protected]",
"[email protected]"
],
"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": "PayPal Email",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "LOWER(CAST({col} AS VARCHAR))"
}Examples
Aliases
paypal_account