{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-eventbridge-scheduler/refs/heads/main/json-schema/amazon-eventbridge-scheduler-flexible-time-window-schema.json", "title": "FlexibleTimeWindow", "description": "Allows you to configure a time window during which EventBridge Scheduler invokes the schedule.", "type": "object", "properties": { "MaximumWindowInMinutes": { "allOf": [ { "$ref": "#/components/schemas/MaximumWindowInMinutes" }, { "description": "The maximum time window during which a schedule can be invoked." } ] }, "Mode": { "allOf": [ { "$ref": "#/components/schemas/FlexibleTimeWindowMode" }, { "description": "Determines whether the schedule is invoked within a flexible time window." } ] } }, "required": [ "Mode" ] }