IMEI
International Mobile Equipment Identity. 15-digit identifier for mobile devices. Last digit is a check digit (Luhn algorithm).
IMEI
technology.code.imeiInternational Mobile Equipment Identity. 15-digit identifier for mobile devices. Last digit is a check digit (Luhn algorithm).
Domain
technology
Category
code
Casts to
VARCHAR
Scope
Universal
Try it
CLI
$ finetype infer -i "490154203237518" --mode column
→ technology.code.imeiDuckDB
Detect
SELECT ft_infer('490154203237518');
-- → 'technology.code.imei'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) = 'technology.code.imei';JSON Schema
finetype taxonomy technology.code.imei -o json-schema
{
"$id": "https://meridian.online/schemas/technology.code.imei",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "International Mobile Equipment Identity. 15-digit identifier for mobile devices. Last digit is a check digit (Luhn algorithm).",
"examples": [
"490154203237518",
"352043068649149",
"010000862422488"
],
"pattern": "^[0-9]{15}$",
"title": "IMEI",
"type": "string",
"x-finetype-label": "technology.code.imei",
"x-finetype-pii": false
}Examples
490154203237518352043068649149010000862422488