VASTlint
VMAP-1.0-root-version

VMAP-1.0-root-version

Root `<VMAP>` element must have a version attribute

ErrorVMAPIAB VMAP 1.0.1 §2.3VMAP 1.0 (all VMAP documents)

Short answer

The <VMAP> root element must declare a version attribute. Without it, players cannot confirm they are reading a VMAP document and will typically discard the response.

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. VMAP rules validate the ad break schedule envelope. Malformed break timing, wrong namespace declarations, or invalid AdSource content prevent players from resolving any of the ads in the playlist. Affected scope: VMAP 1.0 (all VMAP documents).

Invalid

<vmap:VMAP xmlns:vmap="http://www.iab.net/videosuite/vmap">
  <vmap:AdBreak timeOffset="start" breakType="linear" />
</vmap:VMAP>

Valid

<vmap:VMAP xmlns:vmap="http://www.iab.net/videosuite/vmap" version="1.0">
  <vmap:AdBreak timeOffset="start" breakType="linear" />
</vmap:VMAP>
Check your VAST tag for VMAP-1.0-root-version and other issues instantly.Open the VAST tag validator →