MeridianMERIDIAN

Full Name

Complete person name (first and last names, possibly including middle names). Locale-specific due to name order and formatting conventions (e.g., Western "FirstName LastName" vs East Asian "LastName FirstName").

Full Name

identity.person.full_name

Complete person name (first and last names, possibly including middle names). Locale-specific due to name order and formatting conventions (e.g., Western "FirstName LastName" vs East Asian "LastName FirstName").

Domain
identity
Category
person
Casts to
VARCHAR
Scope
Locale-specific
Locales
EN, EN_AU, EN_GB, EN_CA, EN_US, DE, FR, ES, IT, NL, PL, RU, JA, ZH, KO, AR

Try it

CLI
$ finetype infer -i "John Smith" --mode column
→ identity.person.full_name

DuckDB

Detect
SELECT ft_infer('John Smith');
-- → 'identity.person.full_name'
Cast expression
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.full_name';

Struct Expansion

Expression
first_name: REGEXP_EXTRACT({col}, '^([^ ]+)')
last_name: REGEXP_EXTRACT({col}, '([^ ]+)$')

JSON Schema

finetype taxonomy identity.person.full_name -o json-schema
{
  "$id": "https://meridian.online/schemas/identity.person.full_name",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Complete person name (first and last names, possibly including middle names). Locale-specific due to name order and formatting conventions (e.g., Western \"FirstName LastName\" vs East Asian \"LastName FirstName\").",
  "examples": [
    "John Smith",
    "María García",
    "Jacques Dubois",
    "田中太郎",
    "محمد علي",
    "Smith, Mr. John",
    "Dr. Jane Wilson",
    "BROWN, ALICE"
  ],
  "maxLength": 200,
  "minLength": 2,
  "pattern": "^[\\p{L}\\s'\\-.,]+$",
  "title": "Full Name",
  "type": "string",
  "x-finetype-label": "identity.person.full_name",
  "x-finetype-pii": true
}

Examples

John SmithMaría GarcíaJacques Dubois田中太郎محمد عليSmith, Mr. JohnDr. Jane WilsonBROWN, ALICE

Aliases

namefullname

Type Registry