# NewSchedule
## Properties
**path** | **String** | The path where the schedule will be created |
**schedule** | **String** | The cron schedule to trigger the script or flow. Should include seconds. |
**timezone** | **String** | The timezone to use for the cron schedule |
**script_path** | **String** | The path to the script or flow to trigger |
**is_flow** | **bool** | Whether the schedule is for a flow |
**args** | [**std::collections::HashMap<String, serde_json::Value>**](serde_json::Value.md) | The arguments to pass to the script or flow |
**enabled** | Option<**bool**> | Whether the schedule is enabled | [optional]
**on_failure** | Option<**String**> | The path to the script or flow to trigger on failure | [optional]
**on_failure_times** | Option<**f64**> | The number of times to retry on failure | [optional]
**on_failure_exact** | Option<**bool**> | Whether the schedule should only run on the exact time | [optional]
**on_failure_extra_args** | Option<[**std::collections::HashMap<String, serde_json::Value>**](serde_json::Value.md)> | The arguments to pass to the script or flow | [optional]
**on_recovery** | Option<**String**> | The path to the script or flow to trigger on recovery | [optional]
**on_recovery_times** | Option<**f64**> | The number of times to retry on recovery | [optional]
**on_recovery_extra_args** | Option<[**std::collections::HashMap<String, serde_json::Value>**](serde_json::Value.md)> | The arguments to pass to the script or flow | [optional]
**on_success** | Option<**String**> | The path to the script or flow to trigger on success | [optional]
**on_success_extra_args** | Option<[**std::collections::HashMap<String, serde_json::Value>**](serde_json::Value.md)> | The arguments to pass to the script or flow | [optional]
**ws_error_handler_muted** | Option<**bool**> | Whether the WebSocket error handler is muted | [optional]
**retry** | Option<[**models::Retry**](Retry.md)> | | [optional]
**no_flow_overlap** | Option<**bool**> | Whether the schedule should not run if a flow is already running | [optional]
**summary** | Option<**String**> | The summary of the schedule | [optional]
**description** | Option<**String**> | The description of the schedule | [optional]
**tag** | Option<**String**> | The tag of the schedule | [optional]
**paused_until** | Option<**String**> | The date and time the schedule will be paused until | [optional]
**cron_version** | Option<**String**> | The version of the cron schedule to use (last is v2) | [optional]
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)