technology.development.calverCalendar versioning (CalVer) following date-based patterns like YYYY.MM.DD or YYYY.MM. Used by projects that version based on release calendar.
$ finetype infer -i "2024.02"
→ technology.development.calverSELECT finetype('2024.02');
-- → 'technology.development.calver'CAST({col} AS VARCHAR)-- Normalise and cast in one step
SELECT TRY_CAST(finetype_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE finetype(my_column) = 'technology.development.calver';day: CAST(REGEXP_EXTRACT({col}, '^[0-9]{4}\.[0-9]{2}\.([0-9]{2})') AS SMALLINT)
month: CAST(REGEXP_EXTRACT({col}, '^[0-9]{4}\.([0-9]{2})') AS SMALLINT)
year: CAST(REGEXP_EXTRACT({col}, '^([0-9]{4})') AS SMALLINT){
"$id": "https://meridian.online/schemas/technology.development.calver",
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "Calendar versioning (CalVer) following date-based patterns like YYYY.MM.DD or YYYY.MM. Used by projects that version based on release calendar.",
"examples": [
"2024.02",
"2024.02.09",
"2023.12.31",
"2024.01.15.1"
],
"pattern": "^[0-9]{4}\\.[0-9]{2}(?:\\.[0-9]{2})?(?:\\..*)?$",
"title": "Calendar Version",
"type": "string",
"x-finetype-broad-type": "VARCHAR",
"x-finetype-transform": "CAST({col} AS VARCHAR)"
}2024.022024.02.092023.12.312024.01.15.1