Amazon MediaTailor · JSON Structure

Mediatailor Api Dash Playlist Settings Structure

Dash manifest configuration parameters.

Type: object Properties: 4
BroadcastingMedia ProcessingMedia

DashPlaylistSettings is a JSON Structure definition published by Amazon MediaTailor, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ManifestWindowSeconds MinBufferTimeSeconds MinUpdatePeriodSeconds SuggestedPresentationDelaySeconds

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-dash-playlist-settings-structure.json",
  "name": "DashPlaylistSettings",
  "type": "object",
  "description": "Dash manifest configuration parameters.",
  "properties": {
    "ManifestWindowSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "description": "The total duration (in seconds) of each manifest. Minimum value: <code>30</code> seconds. Maximum value: <code>3600</code> seconds."
        }
      ]
    },
    "MinBufferTimeSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "description": "Minimum amount of content (measured in seconds) that a player must keep available in the buffer. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
        }
      ]
    },
    "MinUpdatePeriodSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "description": "Minimum amount of time (in seconds) that the player should wait before requesting updates to the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
        }
      ]
    },
    "SuggestedPresentationDelaySeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/__integer"
        },
        {
          "description": "Amount of time (in seconds) that the player should be from the live point at the end of the manifest. Minimum value: <code>2</code> seconds. Maximum value: <code>60</code> seconds."
        }
      ]
    }
  }
}