identity.person.full_nameComplete 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").
$ finetype infer -i "John Smith"
→ identity.person.full_nameSELECT finetype('John Smith');
-- → 'identity.person.full_name'CAST({col} AS VARCHAR)-- 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) = 'identity.person.full_name';first_name: REGEXP_EXTRACT({col}, '^([^ ]+)')
last_name: REGEXP_EXTRACT({col}, '([^ ]+)$'){
"$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-broad-type": "VARCHAR",
"x-finetype-transform": "CAST({col} AS VARCHAR)"
}John SmithMaría GarcíaJacques Dubois田中太郎محمد عليSmith, Mr. JohnDr. Jane WilsonBROWN, ALICE