VASTlint

VAST error codes / Parsing and schema

VAST error 102: VAST version not supported

Short answer: The player does not support the VAST version declared on the response.

What it means

The `version` attribute on `<VAST>` names a version the player will not render: too new, or malformed.

Common causes

  • `version` attribute missing or not a recognised value (2.0, 3.0, 4.0–4.3)
  • A 4.x response sent to a player that only supports 3.0
  • Version on the response does not match what the chain negotiated

How to fix it

Confirm the `version` attribute is present and a value the player supports, and that wrapper and inline versions are consistent.

VAST error codes are runtime buckets emitted by the player. They tell you where the failure happened, not which line of XML caused it. Paste the raw tag into the validator to map this code onto the exact element and rule.

Related vastlint rules

Related error codes

Debug this tag now

Validate the XML, follow the wrapper chain, or check it in CI before launch:

# CLI: exits non-zero on errors, ideal for pipelines
vastlint check creative.xml

Use the right tool for this failure

If you already have the resolved XML, run a pure spec check. If you only have a live tag URL, test that endpoint first. If the failure happens in the wrapper chain, inspect each hop.

Further reading