# DailyScheduleParameters Object

## Description

Specification for parameters specific to a daily schedule.

## Properties

### days

Array of days of the week.

Type: Array of `string`

Possible Values:

* `sunday`
* `monday`
* `tuesday`
* `wednesday`
* `thursday`
* `friday`
* `saturday`

Required: Yes

## Sample JSON

```javascript
{
    "days": [
        "sunday",
        "monday",
        "tuesday",
        "wednesday",
        "thursday",
        "friday",
        "saturday"
    ]
}
```
