Databricks · Schema

CronSchedule

AIAnalyticsApache SparkBig DataClean RoomsCloud ComputingDataData AnalyticsData EngineeringData GovernanceDelta LakeDelta SharingETLIdentity ManagementLakehouseMachine LearningMLflowModel ServingSecuritySQLUnity CatalogVector SearchVisualize

Properties

Name Type Description
quartz_cron_expression string A Quartz cron expression describing the schedule. See http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html
timezone_id string A Java timezone ID. The schedule is resolved relative to this timezone.
pause_status string Whether the schedule is paused.
View JSON Schema on GitHub

JSON Schema

databricks-cronschedule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CronSchedule",
  "title": "CronSchedule",
  "type": "object",
  "required": [
    "quartz_cron_expression",
    "timezone_id"
  ],
  "properties": {
    "quartz_cron_expression": {
      "type": "string",
      "description": "A Quartz cron expression describing the schedule. See http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html",
      "examples": [
        "0 0 8 * * ?"
      ]
    },
    "timezone_id": {
      "type": "string",
      "description": "A Java timezone ID. The schedule is resolved relative to this timezone.",
      "examples": [
        "America/Los_Angeles"
      ]
    },
    "pause_status": {
      "type": "string",
      "enum": [
        "PAUSED",
        "UNPAUSED"
      ],
      "description": "Whether the schedule is paused.",
      "example": "PAUSED"
    }
  }
}