# MonthlyScheduleParameters Object

## Description

Parameters for a monthly schedule.

## Properties

### dayOfMonth

Day of the month to execute.

Type: `string`

Valid Values:

* `same-day-as-start`
* `indicate-day-and-week`
* `last-day`

Required: Yes

### months

Array of months of the year.

Type: Array of `string`

Possible Values:

* `january`
* `february`
* `march`
* `april`
* `may`
* `june`
* `july`
* `august`
* `september`
* `october`
* `november`
* `december`

Required: Yes

### weekAndDay

Indicates the week and day to execute.

Type: [WeekAndDay](https://github.com/skeddly/skeddly-api/tree/6d02f9b6e3bedba66e16a6fb9e2503d33556f127/types/weekandday-object.md) object.

Required: Conditional

## Sample JSON

```javascript
{
    "dayOfMonth": "indicate-day-and-week",
    "months": [
        "january",
        "july"
    ],
    "weekAndDay": {
        "day": "sunday",
        "week": "first"
    }
}
```
