You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/v3-openapi.yaml
+18-1Lines changed: 18 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -5744,6 +5744,10 @@ components:
5744
5744
type: string
5745
5745
example: "America/New_York"
5746
5746
description: Defaults to "UTC". In IANA format ("America/New_York"). If set then it will trigger at the CRON frequency in that timezone and respect daylight savings time.
5747
+
window:
5748
+
type: string
5749
+
example: "30m"
5750
+
description: Optionally spread runs by assigning each schedule a stable time within this window after its cron time. Use a whole duration in minutes or hours up to 24 hours ("30m", "2h", "24h"), or a percentage of the interval between runs ("30%", "100%"). Use "0m" for no spreading.
5747
5751
required:
5748
5752
- task
5749
5753
- cron
@@ -5761,6 +5765,10 @@ components:
5761
5765
type: string
5762
5766
example: "America/New_York"
5763
5767
description: Defaults to "UTC". In IANA format ("America/New_York"). If set then it will trigger at the CRON frequency in that timezone and respect daylight savings time.
5768
+
window:
5769
+
type: string
5770
+
example: "30m"
5771
+
description: Optionally spread runs by assigning each schedule a stable time within this window after its cron time. Use a whole duration in minutes or hours up to 24 hours ("30m", "2h", "24h"), or a percentage of the interval between runs ("30%", "100%"). Use "0m" for no spreading.
5764
5772
required:
5765
5773
- task
5766
5774
- cron
@@ -5812,11 +5820,20 @@ components:
5812
5820
type: string
5813
5821
example: "America/New_York"
5814
5822
description: Defaults to UTC. In IANA format, if set then it will trigger at the CRON frequency in that timezone and respect daylight savings time.
5823
+
window:
5824
+
type: string
5825
+
example: "30m"
5826
+
description: The configured window used to spread runs after their cron time, if set. A whole duration such as "30m" or "2h", or a percentage such as "30%".
5815
5827
nextRun:
5816
5828
type: string
5817
5829
format: date-time
5818
-
description: The next time the schedule will run
5830
+
description: The next nominal cron time the schedule will run
5819
5831
example: "2024-04-01T00:00:00Z"
5832
+
nextRunEffectiveAt:
5833
+
type: string
5834
+
format: date-time
5835
+
description: The stable assigned time the next run will actually start. Equals `nextRun` when no window is set.
0 commit comments