CPT Procedure Code
Current Procedural Terminology code for medical procedures and services. Format: 5 digits, or 4 digits followed by a letter suffix (F, T, or U for tracking/performance/services).
CPT Procedure Code
identity.medical.cptCurrent Procedural Terminology code for medical procedures and services. Format: 5 digits, or 4 digits followed by a letter suffix (F, T, or U for tracking/performance/services).
Domain
identity
Category
medical
Casts to
VARCHAR
Scope
Universal
Try it
CLI
$ finetype infer -i "99213"
→ identity.medical.cptDuckDB
Detect
SELECT finetype('99213');
-- → 'identity.medical.cpt'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) = 'identity.medical.cpt';JSON Schema
finetype schema identity.medical.cpt
{
"$id": "https://meridian.online/schemas/identity.medical.cpt",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Current Procedural Terminology code for medical procedures and services. Format: 5 digits, or 4 digits followed by a letter suffix (F, T, or U for tracking/performance/services).",
"examples": [
"99213",
"29580",
"2029F",
"0307T",
"99214"
],
"pattern": "^\\d{5}$|^\\d{4}[FTU]$",
"title": "CPT Procedure Code",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "CAST({col} AS VARCHAR)"
}Examples
99213295802029F0307T99214Aliases
procedure_code