RFC 3339 (Space Separator)
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.
RFC 3339 (Space Separator)
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.
Domain
datetime
Category
timestamp
Casts to
TIMESTAMPTZ
Scope
Universal
Try it
CLI
$ finetype infer -i "2024-01-15 10:30:00+00:00" --mode column
→ datetime.timestamp.rfc_3339DuckDB
Detect
SELECT ft_infer('2024-01-15 10:30:00+00:00');
-- → 'datetime.timestamp.rfc_3339'Cast expression
strptime({col}, '%Y-%m-%d %H:%M:%S%z')
-- Format: %Y-%m-%d %H:%M:%S%zSafe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS TIMESTAMPTZ) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'datetime.timestamp.rfc_3339';JSON Schema
finetype taxonomy datetime.timestamp.rfc_3339 -o json-schema
{
"$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",
"2024-03-15 10: 30: 00Z"
],
"pattern": "^\\d{4}-\\d{2}-\\d{2} \\d{2}:\\d{2}:\\d{2}([+-]\\d{2}:\\d{2}|Z)$",
"title": "RFC 3339 (Space Separator)",
"type": "string",
"x-finetype-label": "datetime.timestamp.rfc_3339",
"x-finetype-pii": false
}Examples
2024-01-15 10:30:00+00:002019-12-31 23:59:59-05:002023-06-01 12:00:00+09:002024-03-15 10:30:00Z