datetime.timestamp.rfc_3339Internet datetime format, a profile of ISO 8601 that allows a space separator between date and time (RFC 3339 §5.6). Used in Atom feeds, JSON APIs, and modern web services. Distinguished from iso_8601_offset by the space separator: RFC 3339 uses space, ISO 8601 requires T. Disambiguation: Tier 2 timestamp model detects T vs space.
$ finetype infer -i "2024-01-15 10:30:00+00:00"
→ datetime.timestamp.rfc_3339SELECT finetype('2024-01-15 10:30:00+00:00');
-- → 'datetime.timestamp.rfc_3339'strptime({col}, '%Y-%m-%d %H:%M:%S%:z')
-- Format: %Y-%m-%d %H:%M:%S%:z-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS TIMESTAMPTZ) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.timestamp.rfc_3339';{
"$id": "https://meridian.online/schemas/datetime.timestamp.rfc_3339",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Internet datetime format, a profile of ISO 8601 that allows a space separator between date and time (RFC 3339 §5.6). Used in Atom feeds, JSON APIs, and modern web services. Distinguished from iso_8601_offset by the space separator: RFC 3339 uses space, ISO 8601 requires T. Disambiguation: Tier 2 timestamp model detects T vs space.",
"examples": [
"2024-01-15 10: 30: 00+00: 00",
"2019-12-31 23: 59: 59-05: 00",
"2023-06-01 12: 00: 00+09: 00"
],
"pattern": "^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}[+-]\\d{2}:\\d{2}$",
"title": "RFC 3339 (Space Separator)",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-format-string": "%Y-%m-%d %H:%M:%S%:z",
"x-finetype-transform": "strptime({col}, '%Y-%m-%d %H:%M:%S%:z')"
}2024-01-15 10:30:00+00:002019-12-31 23:59:59-05:002023-06-01 12:00:00+09:00