datetime.date.short_dmyTwo-digit year, day-first. Dash-separated. Common in legacy systems and short-form data entry.
$ finetype infer -i "15-01-24"
→ datetime.date.short_dmySELECT finetype('15-01-24');
-- → 'datetime.date.short_dmy'strptime({col}, '%d-%m-%y')::DATE
-- Format: %d-%m-%y-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS DATE) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.date.short_dmy';{
"$id": "https://meridian.online/schemas/datetime.date.short_dmy",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Two-digit year, day-first. Dash-separated. Common in legacy systems and short-form data entry.",
"examples": [
"15-01-24",
"31-12-99"
],
"maxLength": 8,
"minLength": 8,
"pattern": "^\\d{2}-\\d{2}-\\d{2}$",
"title": "Short Date (Day-Month-Year, 2-digit year)",
"type": "string",
"x-finetype-broad-type": "DATE",
"x-finetype-format-string": "%d-%m-%y",
"x-finetype-transform": "strptime({col}, '%d-%m-%y')::DATE"
}15-01-2431-12-99