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

# HourlyScheduleParameters Object

## Description

Specification for parameters specific to a hourly schedule.

## Properties

### hours

Array of hours of the day.

Type: Array of `integer`

Possible Values: Integers 0 to 23

Required: Yes

## Sample JSON

```javascript
{
    "hours": [
        0,
        1,
        2,
        3,
        4,
        5,
        6,
        7,
        8,
        9,
        10,
        11,
        12,
        13,
        14,
        15,
        16,
        17,
        18,
        19,
        20,
        21,
        22,
        23
    ]
}
```
