Amazon MediaTailor · Schema

ScheduleAdBreak

The schedule's ad break properties.

BroadcastingMedia ProcessingMedia

Properties

Name Type Description
ApproximateDurationSeconds object
ApproximateStartTime object
SourceLocationName object
VodSourceName object
View JSON Schema on GitHub

JSON Schema

mediatailor-api-schedule-ad-break-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediatailor/refs/heads/main/json-schema/mediatailor-api-schedule-ad-break-schema.json",
  "title": "ScheduleAdBreak",
  "description": "The schedule's ad break properties.",
  "type": "object",
  "properties": {
    "ApproximateDurationSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__long"
        },
        {
          "description": "The approximate duration of the ad break, in seconds."
        }
      ]
    },
    "ApproximateStartTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__timestampUnix"
        },
        {
          "description": "The approximate time that the ad will start playing."
        }
      ]
    },
    "SourceLocationName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The name of the source location containing the VOD source used for the ad break."
        }
      ]
    },
    "VodSourceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__string"
        },
        {
          "description": "The name of the VOD source used for the ad break."
        }
      ]
    }
  }
}