Skip to content

Long Date with Full Month Name

Type Registry

Long Date with Full Month Name

datetime.date.long_full_month

Date with full month name. Locale-specific because month names vary by language (January vs janvier vs Januar).

Domain datetimedate
Casts to DATE
Scope Locale-specific
Locales EN, FR, DE, ES, IT, PT, NL, SV, DA, NO, PL, CS, RU

Try it

CLI
$ finetype infer -i "January 15, 2024"
→ datetime.date.long_full_month

DuckDB

Detect
SELECT finetype('January 15, 2024');
-- → 'datetime.date.long_full_month'
Cast expression
strptime({col}, '%B %d, %Y')::DATE
Format: %B %d, %Y
Safe cast pipeline
-- 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.long_full_month';

JSON Schema

finetype schema datetime.date.long_full_month
{
  "$id": "https://noon.sh/schemas/datetime.date.long_full_month",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Date with full month name. Locale-specific because month names vary by language (January vs janvier vs Januar).",
  "examples": [
    "January 15, 2024",
    "December 31, 2019"
  ],
  "pattern": "^[A-Za-z]+ \\d{2}, \\d{4}$",
  "title": "Long Date with Full Month Name",
  "type": "string"
}

Examples

January 15, 2024December 31, 2019

Also known as

long_full_month_name

Types in datetime