Azure Databricks · Schema

CronSchedule

AnalyticsApache SparkBig DataData EngineeringMachine Learning

Properties

Name Type Description
quartz_cron_expression string Quartz cron expression for the schedule. See http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html
timezone_id string Java timezone ID for the schedule
pause_status string Whether the schedule is paused or active
View JSON Schema on GitHub

JSON Schema

azure-databricks-cron-schedule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CronSchedule",
  "type": "object",
  "properties": {
    "quartz_cron_expression": {
      "type": "string",
      "description": "Quartz cron expression for the schedule. See http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html"
    },
    "timezone_id": {
      "type": "string",
      "description": "Java timezone ID for the schedule"
    },
    "pause_status": {
      "type": "string",
      "description": "Whether the schedule is paused or active"
    }
  }
}