{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/RecurrenceSchedule", "title": "RecurrenceSchedule", "type": "object", "properties": { "hours": { "type": "array", "items": { "type": "integer", "format": "int32" } }, "minutes": { "type": "array", "items": { "type": "integer", "format": "int32" } }, "weekDays": { "type": "array", "items": { "type": "string", "enum": [ "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday" ] } }, "monthDays": { "type": "array", "items": { "type": "integer", "format": "int32" } } } }