MeridianMERIDIAN

Australian Business Number

11-digit identifier for Australian businesses, issued by the Australian Business Register. May appear with or without spaces.

Australian Business Number

identity.government.abn

11-digit identifier for Australian businesses, issued by the Australian Business Register. May appear with or without spaces.

Domain
identity
Category
government
Casts to
VARCHAR
Scope
Locale-specific
Locales
EN_AU

Try it

CLI
$ finetype infer -i "51 824 753 556"
→ identity.government.abn

DuckDB

Detect
SELECT finetype('51 824 753 556');
-- → 'identity.government.abn'
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.government.abn';

JSON Schema

finetype schema identity.government.abn
{
  "$id": "https://meridian.online/schemas/identity.government.abn",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "11-digit identifier for Australian businesses, issued by the Australian Business Register. May appear with or without spaces.",
  "examples": [
    "51 824 753 556",
    "53004085616",
    "12 345 678 901",
    "98 765 432 109"
  ],
  "maxLength": 14,
  "minLength": 11,
  "pattern": "^\\d{2}\\s?\\d{3}\\s?\\d{3}\\s?\\d{3}$",
  "title": "Australian Business Number",
  "type": "string",
  "x-finetype-broad-type": "VARCHAR",
  "x-finetype-pii": true,
  "x-finetype-transform": "CAST({col} AS VARCHAR)"
}

Examples

51 824 753 5565300408561612 345 678 90198 765 432 109

Aliases

australian_business_number

Type Registry