datetime.time.iso24-hour time with microsecond precision. Common in high-frequency data, scientific instruments, and log files.
$ finetype infer -i "10:30:00.123456"
→ datetime.time.isoSELECT finetype('10:30:00.123456');
-- → 'datetime.time.iso'strptime({col}, '%H:%M:%S.%f')::TIME
-- Format: %H:%M:%S.%f-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS TIME) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'datetime.time.iso';{
"$id": "https://meridian.online/schemas/datetime.time.iso",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "24-hour time with microsecond precision. Common in high-frequency data, scientific instruments, and log files.",
"examples": [
"10: 30: 00.123456",
"23: 59: 59.000000"
],
"maxLength": 15,
"minLength": 15,
"pattern": "^\\d{2}:\\d{2}:\\d{2}\\.\\d{6}$",
"title": "ISO Time with Microseconds",
"type": "string",
"x-finetype-broad-type": "TIME",
"x-finetype-format-string": "%H:%M:%S.%f",
"x-finetype-transform": "strptime({col}, '%H:%M:%S.%f')::TIME"
}10:30:00.12345623:59:59.000000