datetime.date.compact_mdyEight-digit date with no separators, month-first (US ordering).
$ finetype infer -i "01152024"
→ datetime.date.compact_mdySELECT finetype('01152024');
-- → 'datetime.date.compact_mdy'strptime({col}, '%m%d%Y')::DATE
-- Format: %m%d%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.compact_mdy';{
"$id": "https://meridian.online/schemas/datetime.date.compact_mdy",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Eight-digit date with no separators, month-first (US ordering).",
"examples": [
"01152024",
"12312019"
],
"maxLength": 8,
"minLength": 8,
"pattern": "^\\d{8}$",
"title": "Compact Date (MMDDYYYY)",
"type": "string",
"x-finetype-broad-type": "DATE",
"x-finetype-format-string": "%m%d%Y",
"x-finetype-transform": "strptime({col}, '%m%d%Y')::DATE"
}0115202412312019