ScheduleCreate
namestringrequired
Name of the schedule
regular_schedules_attributes object[]
List of regular schedules to create
Array [
days objectrequired
Days of the week when this schedule is active
monboolean
tueboolean
wedboolean
thuboolean
friboolean
satboolean
sunboolean
start_timetimerequired
Start time for this schedule
end_timetimerequired
End time for this schedule
]
special_schedules_attributes object[]
List of special schedules to create
Array [
datedaterequired
Date for this special schedule
start_timetimerequired
Start time for this schedule
end_timetimerequired
End time for this schedule
closed_all_dayboolean
Whether the schedule is closed all day
]
ScheduleCreate
{
"name": "string",
"regular_schedules_attributes": [
{
"days": {
"mon": true,
"tue": true,
"wed": true,
"thu": true,
"fri": true,
"sat": true,
"sun": true
},
"start_time": "string",
"end_time": "string"
}
],
"special_schedules_attributes": [
{
"date": "2024-07-29",
"start_time": "string",
"end_time": "string",
"closed_all_day": true
}
]
}