VAST-2.0-mediafile-delivery-enum
<MediaFile> delivery must be "progressive" or "streaming"
Short answer
The delivery attribute on <MediaFile> must be exactly progressive or streaming. Any other value (e.g., cdn, download) is a spec violation.
Why this matters in production
This rule is usually a delivery blocker. Many players, SDKs, and ad servers will discard the response or skip the affected creative once this condition is hit. Value-format rules tend to fail at the moment a player interprets a field such as duration, skipoffset, bitrate, or versioning. They are especially painful because the XML can look valid at a glance. Affected scope: VAST 2.0 and later (all versions).
How to fix
Change the delivery attribute to either progressive (standard HTTP file) or streaming (live protocol such as HLS or DASH).
Invalid
<MediaFile delivery="cdn" type="video/mp4" width="1280" height="720">…</MediaFile>Valid
<MediaFile delivery="progressive" type="video/mp4" width="1280" height="720">…</MediaFile>VAST-2.0-mediafile-delivery-enum and other issues instantly.Validate a tag →