Snowflake · Schema

TaskSchedule

Specifies the schedule for periodically running the task.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
schedule_type string Type of the schedule, can be either CRON_TYPE or MINUTES_TYPE.
View JSON Schema on GitHub

JSON Schema

snowflake-taskschedule-schema.json Raw ↑
{
  "$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"
    }
  }
}