{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AlertScheduleRestrictionWindow", "title": "AlertScheduleRestrictionWindow", "additionalProperties": false, "properties": { "start": { "description": "Start time HH:MM (24-hour, project timezone). Inclusive. Each window must span \u2265 30 minutes on the local daily timeline (half-open [start, end)).", "title": "Start", "type": "string" }, "end": { "description": "End time HH:MM (24-hour). Exclusive (half-open interval). Each window must span \u2265 30 minutes locally.", "title": "End", "type": "string" } }, "required": [ "start", "end" ], "type": "object" }