Skip to content

SEDOL

Type Registry

SEDOL

identity.payment.sedol

Stock Exchange Daily Official List code. 7-character identifier for UK and Irish securities. Format: 6 alphanumeric characters + 1 check digit (weighted sum with weights 1,3,1,7,3,9 mod 10).

Domain identitypayment
Casts to VARCHAR
Scope Universal

Try it

CLI
$ finetype infer -i "0263494"
→ identity.payment.sedol

DuckDB

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

JSON Schema

finetype schema identity.payment.sedol
{
  "$id": "https://noon.sh/schemas/identity.payment.sedol",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Stock Exchange Daily Official List code. 7-character identifier for UK and Irish securities. Format: 6 alphanumeric characters + 1 check digit (weighted sum with weights 1,3,1,7,3,9 mod 10).",
  "examples": [
    "0263494",
    "B0WNLY7",
    "3134865"
  ],
  "pattern": "^[B-DF-HJ-NP-TV-Z0-9]{6}[0-9]$",
  "title": "SEDOL",
  "type": "string"
}

Examples

0263494B0WNLY73134865

Types in identity