datetime.timestamp.iso_8601_compactCompact ISO 8601 without separators. Common in filenames, log identifiers, and systems with character constraints.
$ finetype infer -i "20240115T103000"
→ datetime.timestamp.iso_8601_compactSELECT finetype('20240115T103000');
-- → 'datetime.timestamp.iso_8601_compact'strptime({col}, '%Y%m%dT%H%M%S')
-- Format: %Y%m%dT%H%M%S-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS TIMESTAMP) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.timestamp.iso_8601_compact';{
"$id": "https://meridian.online/schemas/datetime.timestamp.iso_8601_compact",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Compact ISO 8601 without separators. Common in filenames, log identifiers, and systems with character constraints.",
"examples": [
"20240115T103000",
"20191231T235959"
],
"maxLength": 15,
"minLength": 15,
"pattern": "^\\d{8}T\\d{6}$",
"title": "ISO 8601 Compact",
"type": "string",
"x-finetype-broad-type": "TIMESTAMP",
"x-finetype-format-string": "%Y%m%dT%H%M%S",
"x-finetype-transform": "strptime({col}, '%Y%m%dT%H%M%S')"
}20240115T10300020191231T235959