Skip to content

CVV / CVC

Type Registry

CVV / CVC

identity.payment.cvv

Card Verification Value (CVV/CVV2 for Visa/MC) or CVC (American Express). 3 digits (4 for Amex). HIGHLY SENSITIVE — never store.

Domain identitypayment
Casts to VARCHAR
Scope Universal

Try it

CLI
$ finetype infer -i "123"
→ identity.payment.cvv

DuckDB

Detect
SELECT finetype('123');
-- → 'identity.payment.cvv'
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.payment.cvv';

JSON Schema

finetype schema identity.payment.cvv
{
  "$id": "https://noon.sh/schemas/identity.payment.cvv",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Card Verification Value (CVV/CVV2 for Visa/MC) or CVC (American Express). 3 digits (4 for Amex). HIGHLY SENSITIVE — never store.",
  "examples": [
    "123",
    "4567"
  ],
  "pattern": "^[0-9]{3,4}$",
  "title": "CVV / CVC",
  "type": "string"
}

Examples

1234567

Also known as

cvccvc2

Types in identity