MeridianMERIDIAN

Periodicity

Frequency or recurrence label. Used in scheduling, reporting cadence, and time-series metadata.

Periodicity

datetime.component.periodicity

Frequency or recurrence label. Used in scheduling, reporting cadence, and time-series metadata.

Domain
datetime
Category
component
Casts to
VARCHAR
Scope
broad_words

Try it

CLI
$ finetype infer -i "Daily" --mode column
→ datetime.component.periodicity

DuckDB

Detect
SELECT ft_infer('Daily');
-- → 'datetime.component.periodicity'
Cast expression
{col}
Safe cast pipeline
-- Normalise and cast in one step
SELECT TRY_CAST(ft_cast(my_column) AS VARCHAR) AS clean_value
FROM my_table
WHERE ft_infer(my_column) = 'datetime.component.periodicity';

JSON Schema

finetype taxonomy datetime.component.periodicity -o json-schema
{
  "$id": "https://meridian.online/schemas/datetime.component.periodicity",
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "description": "Frequency or recurrence label. Used in scheduling, reporting cadence, and time-series metadata.",
  "enum": [
    "Once",
    "Daily",
    "Weekly",
    "Biweekly",
    "Monthly",
    "Quarterly",
    "Yearly",
    "Never"
  ],
  "examples": [
    "Daily",
    "Monthly",
    "Quarterly"
  ],
  "title": "Periodicity",
  "type": "string",
  "x-finetype-label": "datetime.component.periodicity",
  "x-finetype-pii": false
}

Examples

DailyMonthlyQuarterly

Type Registry