Cron endpoint -> Input<T>Cron endpoint
Converts recurring occurrences into zero, one, or many graph input values.
When to use
Use this page while designing, implementing, operating, or troubleshooting scheduled and durable execution.
Behavior
scheduleuses five fields without seconds: minute, hour, day of month, month, and day of week.Skipoverlap rejects an occurrence while previous work is active.Allowpermits overlap.FireOncecollapses missed occurrences into one catch-up call;Skipdiscards them.
Cron expression format
Enter exactly five whitespace-separated fields. timezone is configured separately and the current portable contract accepts only UTC.
*/5 * * * *runs every five minutes.0 * * * *runs at minute zero of every hour.0 9 * * 1-5runs at 09:00 UTC from Monday through Friday.- Do not add a seconds field.
- Do not constrain both day of month and day of week in the same expression.
Endpoint flow
Schedule properties
Designer Schedule group.
enabledbooleanRegisters the endpoint when true.
Default:truetracingEnabledbooleanCreates a trace for each admitted scheduled event.
Default:falseschedulestringPortable five-field cron expression without seconds: minute hour day-of-month month day-of-week.
*/5 * * * *timezoneenumSchedule timezone.
RequiredDefault:UTCAllowed: UTCoverlapPolicyenumConcurrent occurrence policy.
RequiredDefault:SkipAllowed: Allow, SkipmissedRunPolicyenumMissed occurrence policy.
RequiredDefault:FireOnceAllowed: Skip, FireOnceFunction properties
Generated callback identity and placement.
functionNamestringGenerated callback type or class.
RequiredfunctionPackagerelative pathOptional path below the generated functions root. Empty places the callback directly in that root; folder/sub-folder is resolved from the language-specific root documented under Code Generation / Packages and Modules.
empty (functions root)publicFunctionbooleanPlaces the generated callback in shared module code.
Default:falsefunctionModuleModuleShared Module that owns the callback.
Visible when publicFunction is true.functionInitializerGroupstringDependency-injection initialization group for the generated callback.
Product-level example
schedule: "0 9 * * 1-5"
timezone: UTC
overlapPolicy: Skip
missedRunPolicy: FireOnce