{
"$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: 30 seconds. Maximum value: 3600 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: 2 seconds. Maximum value: 60 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: 2 seconds. Maximum value: 60 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: 2 seconds. Maximum value: 60 seconds."
}
]
}
}
}