From d1871aa5e19d618f3bfa20affd768a6eeeb86158 Mon Sep 17 00:00:00 2001 From: Federico Maleh Date: Wed, 15 Apr 2026 12:43:36 -0300 Subject: [PATCH] Add support for custom cron in scheduled_task job schema --- scheduled_task/specs/service-spec.json.tpl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scheduled_task/specs/service-spec.json.tpl b/scheduled_task/specs/service-spec.json.tpl index b5e07068..4ffc81ac 100644 --- a/scheduled_task/specs/service-spec.json.tpl +++ b/scheduled_task/specs/service-spec.json.tpl @@ -121,6 +121,9 @@ { "const": "0 0 * * *", "title": "Every day (midnight)" + }, + { + "type": "string" } ], "description": "Specify how often the task should run. You can select a predefined option or enter a standard cron expression for custom schedules.",