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