Amazon MediaTailor · JSON Structure

Mediatailor Api Schedule Configuration Structure

Schedule configuration parameters. A channel must be stopped before changes can be made to the schedule.

Type: object Properties: 2 Required: 1
BroadcastingMedia ProcessingMedia

ScheduleConfiguration is a JSON Structure definition published by Amazon MediaTailor, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ClipRange Transition

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-mediatailor/refs/heads/main/json-structure/mediatailor-api-schedule-configuration-structure.json",
  "name": "ScheduleConfiguration",
  "type": "object",
  "description": "Schedule configuration parameters. A channel must be stopped before changes can be made to the schedule.",
  "properties": {
    "ClipRange": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ClipRange"
        },
        {
          "description": "Program clip range configuration."
        }
      ]
    },
    "Transition": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Transition"
        },
        {
          "description": "Program transition configurations."
        }
      ]
    }
  },
  "required": [
    "Transition"
  ]
}