Skip to content

Instantly share code, notes, and snippets.

@spodlecki
Last active February 15, 2021 11:38
Show Gist options
  • Save spodlecki/6808e73003c1bcbcf9a4 to your computer and use it in GitHub Desktop.
Save spodlecki/6808e73003c1bcbcf9a4 to your computer and use it in GitHub Desktop.
VAST 2.0 with a single wrapper
<!-- VAST document with one InLine ad and one Wrapper ad-->
<VAST version="2.0">
<Ad id="601364">
<InLine>
<AdSystem>Acudeo Compatible</AdSystem>
<AdTitle>VAST 2.0 Instream Test 1</AdTitle>
<Description>VAST 2.0 Instream Test 1</Description>
<Error>http://myErrorURL/error</Error>
<Impression>
<![CDATA[http://myTrackingURL/impression]]>
</Impression>
<Creatives>
<Creative AdID="601364">
<Linear>
<Duration>00:00:30</Duration>
<TrackingEvents>
<Tracking event="creativeView">http://myTrackingURL/creativeView</Tracking>
<Tracking event="start">
<![CDATA[http://myTrackingURL/start]]>
</Tracking>
<Tracking event="midpoint">http://myTrackingURL/midpoint</Tracking>
<Tracking event="firstQuartile">http://myTrackingURL/firstQuartile</Tracking>
<Tracking event="thirdQuartile">http://myTrackingURL/thirdQuartile</Tracking>
<Tracking event="complete">http://myTrackingURL/complete</Tracking>
</TrackingEvents>
<VideoClicks>
<ClickThrough>
<![CDATA[http://www.tremormedia.com]]>
</ClickThrough>
<ClickTracking>http://myTrackingURL/click</ClickTracking>
</VideoClicks>
<MediaFiles>
<MediaFile delivery="progressive" type="video/x-flv" bitrate="500" width="400" height="300" scalable="true" maintainAspectRatio="true">
<![CDATA[/example/files/Carrot_400x300_500kb.flv]]>
</MediaFile>
</MediaFiles>
</Linear>
</Creative>
<Creative AdID="601364-Companion">
<CompanionAds>
<Companion width="300" height="250">
<StaticResource creativeType="image/jpeg">/example/files/Blistex1.jpg</StaticResource>
<TrackingEvents>
<Tracking event="creativeView">
<![CDATA[http://myTrackingURL/firstCompanionCreativeView]]>
</Tracking>
</TrackingEvents>
<CompanionClickThrough>http://www.tremormedia.com</CompanionClickThrough>
</Companion>
<Companion width="728" height="90">
<StaticResource creativeType="image/jpeg">
<![CDATA[/example/files/728x90_banner1.jpg]]>
</StaticResource>
<CompanionClickThrough>http://www.tremormedia.com</CompanionClickThrough>
</Companion>
</CompanionAds>
</Creative>
</Creatives>
</InLine>
</Ad>
<Ad id="602833">
<Wrapper>
<AdSystem>Acudeo Compatible</AdSystem>
<VASTAdTagURI>http://localhost:8080/example/vast/document_with_one_inline_ad.xml</VASTAdTagURI>
<Impression>
<![CDATA[http://myTrackingURL/wrapper/impression]]>
</Impression>
<Creatives>
<Creative AdID="602833">
<Linear>
<TrackingEvents>
</TrackingEvents>
</Linear>
</Creative>
<Creative AdID="602833-Companion">
<CompanionAds>
<Companion width="300" height="250">
<StaticResource creativeType="image/jpeg">
<![CDATA[/example/files/300x250_banner1.jpg]]>
</StaticResource>
<TrackingEvents>
<Tracking event="creativeView">http://myTrackingURL/wrapper/firstCompanionCreativeView</Tracking>
</TrackingEvents>
<CompanionClickThrough>http://www.myTrackingURL.com</CompanionClickThrough>
</Companion>
<Companion width="728" height="90">
<StaticResource creativeType="image/jpeg">/example/files/728x90_banner1.jpg</StaticResource>
<CompanionClickThrough>http://www.myTrackingURL.com</CompanionClickThrough>
</Companion>
</CompanionAds>
</Creative>
</Creatives>
</Wrapper>
</Ad>
</VAST>
<!-- VAST document with one Wrapper ad -->
<?xml version="1.0" encoding="UTF-8"?>
<VAST version="2.0">
<Ad id="602833">
<Wrapper>
<AdSystem>Acudeo Compatible</AdSystem>
<VASTAdTagURI>http://localhost:8080/example/vast/document_with_one_inline_ad.xml</VASTAdTagURI>
<Impression>http://myTrackingURL/wrapper/impression</Impression>
<Creatives>
<Creative AdID="602833">
<Linear>
<TrackingEvents>
</TrackingEvents>
</Linear>
</Creative>
<Creative AdID="602833-Companion">
<CompanionAds>
<Companion width="300" height="250">
<StaticResource creativeType="image/jpeg">/example/files/300x250_banner1.jpg</StaticResource>
<TrackingEvents>
<Tracking event="creativeView">http://myTrackingURL/wrapper/firstCompanionCreativeView</Tracking>
</TrackingEvents>
<CompanionClickThrough>http://www.tremormedia.com</CompanionClickThrough>
</Companion>
<Companion width="728" height="90">
<StaticResource creativeType="image/jpeg">
<![CDATA[/example/files/728x90_banner1.jpg]]>
</StaticResource>
<CompanionClickThrough>http://www.tremormedia.com</CompanionClickThrough>
</Companion>
</CompanionAds>
</Creative>
</Creatives>
</Wrapper>
</Ad>
</VAST>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment