IMEI
Type Registry
IMEI
technology.code.imei International Mobile Equipment Identity. 15-digit identifier for mobile devices. Last digit is a check digit (Luhn algorithm).
Domain technology›code
Casts to VARCHAR
Scope Universal
Try it
CLI
$ finetype infer -i "490154203237518"
→ technology.code.imei DuckDB
Detect
SELECT finetype('490154203237518');
-- → 'technology.code.imei' Cast expression
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) = 'technology.code.imei'; JSON Schema
finetype schema technology.code.imei {
"$id": "https://noon.sh/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"
} Examples
490154203237518352043068649149010000862422488