{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mq/refs/heads/main/json-schema/mq-api-weekly-start-time-schema.json", "title": "WeeklyStartTime", "description": "The scheduled time period relative to UTC during which Amazon MQ begins to apply pending updates or patches to the broker.", "type": "object", "properties": { "DayOfWeek": { "allOf": [ { "$ref": "#/components/schemas/DayOfWeek" }, { "xml": { "name": "dayOfWeek" }, "description": "Required. The day of the week." } ] }, "TimeOfDay": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "timeOfDay" }, "description": "Required. The time, in 24-hour format." } ] }, "TimeZone": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "timeZone" }, "description": "The time zone, UTC by default, in either the Country/City format, or the UTC offset format." } ] } }, "required": [ "TimeOfDay", "DayOfWeek" ] }