{ "$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-dash-playlist-settings-schema.json", "title": "DashPlaylistSettings", "description": "Dash manifest configuration parameters.", "type": "object", "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." } ] } } }