Specifies the schedule for periodically running the task.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TaskSchedule", "title": "TaskSchedule", "type": "object", "description": "Specifies the schedule for periodically running the task.", "properties": { "schedule_type": { "description": "Type of the schedule, can be either CRON_TYPE or MINUTES_TYPE.", "type": "string", "example": "example_value" } }, "discriminator": { "propertyName": "schedule_type", "mapping": { "CRON_TYPE": "CronSchedule", "MINUTES_TYPE": "MinutesSchedule" } } }