VASTlint
VMAP-1.0-adtaguri-cdata

VMAP-1.0-adtaguri-cdata

`<AdTagURI>` URI must be contained within a CDATA block

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

Short answer

The URI inside <AdTagURI> must be wrapped in a CDATA section. Without CDATA, special characters in the URL (such as &) will break XML parsing.

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:AdTagURI templateType="vast3">
  https://ads.example.com/vast?foo=1&bar=2
</vmap:AdTagURI>

Valid

<vmap:AdTagURI templateType="vast3">
  <![CDATA[https://ads.example.com/vast?foo=1&bar=2]]>
</vmap:AdTagURI>
Check your VAST tag for VMAP-1.0-adtaguri-cdata and other issues instantly.Open the VAST tag validator →