datetime.date.dmy_space_fullDay FullMonth Year with space separators. Unambiguous due to named month. CLDR en-GB long format, European formal documents.
$ finetype infer -i "15 January 2024"
→ datetime.date.dmy_space_fullSELECT finetype('15 January 2024');
-- → 'datetime.date.dmy_space_full'strptime({col}, '%d %B %Y')::DATE
-- Format: %d %B %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.dmy_space_full';{
"$id": "https://meridian.online/schemas/datetime.date.dmy_space_full",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Day FullMonth Year with space separators. Unambiguous due to named month. CLDR en-GB long format, European formal documents.",
"examples": [
"15 January 2024",
"31 December 2023",
"1 June 2000"
],
"maxLength": 20,
"minLength": 12,
"pattern": "^[0-3]?\\d [A-Z][a-z]+ \\d{4}$",
"title": "DMY Date with Full Month (space-separated)",
"type": "string",
"x-finetype-broad-type": "DATE",
"x-finetype-format-string": "%d %B %Y",
"x-finetype-transform": "strptime({col}, '%d %B %Y')::DATE"
}15 January 202431 December 20231 June 2000