MeridianMERIDIAN

DMY Date (dot-separated)

Day.Month.Year with dot separators. Common in Germany, Austria, Switzerland, and Eastern European countries.

DMY Date (dot-separated)

datetime.date.dmy_dot

Day.Month.Year with dot separators. Common in Germany, Austria, Switzerland, and Eastern European countries.

Domain
datetime
Category
date
Casts to
DATE
Scope
Universal

Try it

CLI
$ finetype infer -i "15.01.2024" --mode column
→ datetime.date.dmy_dot

DuckDB

Detect
SELECT ft_infer('15.01.2024');
-- → 'datetime.date.dmy_dot'
Cast expression
strptime({col}, '%d.%m.%Y')::DATE
-- Format: %d.%m.%Y
Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS DATE) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'datetime.date.dmy_dot';

JSON Schema

finetype taxonomy datetime.date.dmy_dot -o json-schema
{
  "$id": "https://meridian.online/schemas/datetime.date.dmy_dot",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Day.Month.Year with dot separators. Common in Germany, Austria, Switzerland, and Eastern European countries.",
  "examples": [
    "15.01.2024",
    "31.12.2019"
  ],
  "maxLength": 10,
  "minLength": 10,
  "pattern": "^\\d{2}\\.\\d{2}\\.\\d{4}$",
  "title": "DMY Date (dot-separated)",
  "type": "string",
  "x-finetype-label": "datetime.date.dmy_dot",
  "x-finetype-pii": false
}

Examples

15.01.202431.12.2019

Type Registry