# The Schedule object

## Attributes

- `schedule_id` (string)
  UUID identifying the schedule.
  Example: `01ef0cb45e2a1da4a61950e9b8789ce9`
- `dashboard_id` (string)
  UUID identifying the dashboard to which the schedule belongs.
  Example: `04aab30f99ea444490c10c85852f216c`
- `cron_schedule` (object)
  The cron expression describing the frequency of the periodic refresh for this schedule.
  - `quartz_cron_expression` (string)
    A cron expression using quartz syntax. EX: `0 0 8 * * ?` represents everyday at 8am.
     See [Cron Trigger](http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html) for details.
    Example: `0 0 8 * * ?`
  - `timezone_id` (string)
    A Java timezone id. The schedule will be resolved with respect to this timezone.
     See [Java TimeZone](https://docs.oracle.com/javase/7/docs/api/java/util/TimeZone.html) for details.
    Example: `Europe/London`
- `pause_status` (string)
  The status indicates whether this schedule is paused or not.
  Possible values: `UNPAUSED`, `PAUSED`
  Default: `UNPAUSED`
- `display_name` (string)
  The display name for schedule.
  Example: `Monthly Traffic Report Snapshot`
  Constraints: `<= 255 characters`
- `etag` (string)
  The etag for the schedule. Must be left empty on create, must be provided on updates to ensure
   that the schedule has not been modified since the last read, and can be optionally provided on delete.
  Example: `80611980`
- `create_time` (string)
  A timestamp indicating when the schedule was created.
- `update_time` (string)
  A timestamp indicating when the schedule was last updated.
- `warehouse_id` (string)
  The warehouse id to run the dashboard with for the schedule.
  Example: `47bb1c472649e711`

## Example

```json
{
  "schedule_id": "01ef0cb45e2a1da4a61950e9b8789ce9",
  "dashboard_id": "04aab30f99ea444490c10c85852f216c",
  "cron_schedule": {
    "quartz_cron_expression": "0 0 8 * * ?",
    "timezone_id": "Europe/London"
  },
  "pause_status": "string",
  "display_name": "Monthly Traffic Report Snapshot",
  "etag": "80611980",
  "create_time": "string",
  "update_time": "string",
  "warehouse_id": "47bb1c472649e711"
}
```


