> 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/weekandday-object.md).

# WeekAndDay Object

## Description

Indicator for a day in a month.

## Properties

### day

Day of the week.

Type: `string`

Valid Values:

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

Required: Yes

### week

Week of the month.

Type: `string`

Valid Values:

* `first`
* `second`
* `third`
* `fourth`
* `last`

Required: Yes

## Sample JSON

```javascript
{
    "day": "sunday",
    "week": "first"
}
```
