@Matt Harvey that’s an excellent question. In Prefect, we think of schedules as a stand-in for manually starting your flow — in other words, just a convenience for using the API to create flow runs with known future start times. In Prefect Cloud, I think we’d actually suggest not using a schedule at all for this Flow (because the future start times aren’t well known). Instead, we’d recommend creating a small flow that hits that API on a regular basis and then creates new runs of your main flow with appropriate
start_time
settings. For example, you might hit the API at 9am every morning and create 5 new runs of the main flow in response.