Amazon MediaLive · JSON Structure

Medialive Api Schedule Action Structure

Contains information on a single schedule action.

Type: object Properties: 3 Required: 3
BroadcastingMedia ProcessingMedia

ScheduleAction is a JSON Structure definition published by Amazon MediaLive, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ActionName ScheduleActionSettings ScheduleActionStartSettings

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-medialive/refs/heads/main/json-structure/medialive-api-schedule-action-structure.json",
  "name": "ScheduleAction",
  "type": "object",
  "description": "Contains information on a single schedule action.",
  "properties": {
    "ActionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "xml": {
            "name": "actionName"
          },
          "description": "The name of the action, must be unique within the schedule. This name provides the main reference to an action once it is added to the schedule. A name is unique if it is no longer in the schedule. The schedule is automatically cleaned up to remove actions with a start time of more than 1 hour ago (approximately) so at that point a name can be reused."
        }
      ]
    },
    "ScheduleActionSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScheduleActionSettings"
        },
        {
          "xml": {
            "name": "scheduleActionSettings"
          },
          "description": "Settings for this schedule action."
        }
      ]
    },
    "ScheduleActionStartSettings": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScheduleActionStartSettings"
        },
        {
          "xml": {
            "name": "scheduleActionStartSettings"
          },
          "description": "The time for the action to start in the channel."
        }
      ]
    }
  },
  "required": [
    "ActionName",
    "ScheduleActionStartSettings",
    "ScheduleActionSettings"
  ]
}