> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/data-types/scheduleparameters-object/dailyscheduleparameters-object.md).

# 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"
    ]
}
```
