{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-schema/medialive-api-fixed-mode-schedule-action-start-settings-schema.json", "title": "FixedModeScheduleActionStartSettings", "description": "Start time for the action.", "type": "object", "properties": { "Time": { "allOf": [ { "$ref": "#/components/schemas/__string" }, { "xml": { "name": "time" }, "description": "Start time for the action to start in the channel. (Not the time for the action to be added to the schedule: actions are always added to the schedule immediately.) UTC format: yyyy-mm-ddThh:mm:ss.nnnZ. All the letters are digits (for example, mm might be 01) except for the two constants \"T\" for time and \"Z\" for \"UTC format\"." } ] } }, "required": [ "Time" ] }