Skip to content
Novus Examples
xml1.3 KB

VAST 3.0 — Linear Ad With Companion Banners

A VAST 3.0 response pairing a linear spot with two companion banners in the standard IAB sizes, at the older schema version many ad servers still emit. Companions render alongside the video rather than in it, so they exercise a separate slot-matching path — the player has to find a matching container or correctly ignore them when required is none. All URLs point at example.invalid.

Preview — first 30 linesxml
<?xml version="1.0" encoding="UTF-8"?>
<VAST version="3.0">
  <Ad id="novus-companion-sample">
    <InLine>
      <AdSystem>Novus Examples Sample</AdSystem>
      <AdTitle>Fictional spot with companions</AdTitle>
      <Impression><![CDATA[https://example.invalid/imp]]></Impression>
      <Creatives>
        <Creative sequence="1"><Linear>
          <Duration>00:00:15</Duration>
          <MediaFiles>
            <MediaFile delivery="progressive" type="video/mp4" width="640" height="360" bitrate="700">
              <![CDATA[https://example.invalid/spot.mp4]]></MediaFile>
          </MediaFiles>
        </Linear></Creative>
        <Creative sequence="2"><CompanionAds required="none">
          <Companion id="c1" width="300" height="250">
            <StaticResource creativeType="image/png"><![CDATA[https://example.invalid/300x250.png]]></StaticResource>
            <CompanionClickThrough><![CDATA[https://example.invalid/click]]></CompanionClickThrough>
          </Companion>
          <Companion id="c2" width="728" height="90">
            <StaticResource creativeType="image/png"><![CDATA[https://example.invalid/728x90.png]]></StaticResource>
            <CompanionClickThrough><![CDATA[https://example.invalid/click]]></CompanionClickThrough>
          </Companion>
        </CompanionAds></Creative>
      </Creatives>
    </InLine>
  </Ad>
</VAST>

Specifications

Standard
VAST 3.0
Linear Duration
00:00:15
Companions
2
Companion Sizes
300x250, 728x90
Required
none
Urls
example.invalid — never resolvable

What is a .xml file?

XML (Extensible Markup Language) is a verbose, self-describing markup language using nested tags, attributes, and namespaces to represent structured, hierarchical data. It supports schemas, entities, and validation and underlies many document and data formats. It remains common in enterprise, publishing, and interchange contexts.

How to use this file

Use an example XML file to test parsers, namespace and schema validation, XPath queries, and protection against entity-expansion and external-entity attacks.

How to use this file for testing

“VAST 3.0 — Linear Ad With Companion Banners” is a deterministic Novus Examples fixture for Ad insertion, Streaming manifests, Video QA. VAST ad responses and SCTE-35 splice descriptors covering linear break signalling, wrappers, and companion creatives — for testing ad-decision integration and manifest-manipulation logic without calling a real ad server.

Documented properties for this file: XML · 1,370 bytes. Compare results against paired or grouped companions on this page when present (clean↔damaged, searchable↔scanned, or format twins) so scores stay reproducible across runs.

Download the file once, keep the path stable in CI or local scripts, and treat the spec table as the contract: dimensions, seeds, field lists, and roles are intentional. Corrupt or invalid samples are labelled as such — expect parsers to fail loudly rather than silently accept them.

Media fixtures are short and synthetic by design. Prefer waveform or transcript ground truth in the same group when measuring ASR, trim, upscale, or sync tools; do not assume broadcast-quality masters.

Code examples

import xml.etree.ElementTree as ET

tree = ET.parse("vast-companion.xml")
root = tree.getroot()
print(root.tag, [c.tag for c in root][:5])

Generated by generation/video_timedtext.py. Free for any use, no attribution required — license.