-
Notifications
You must be signed in to change notification settings - Fork 46
/
vast_2.0.1.xsd
executable file
·593 lines (593 loc) · 33.7 KB
/
vast_2.0.1.xsd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
<xs:element name="VAST">
<xs:annotation>
<xs:documentation>IAB VAST, Video Ad Serving Template, video xml ad response, Version 2.0.1, xml schema prepared by Tremor Media</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Ad" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Top-level element, wraps each ad in the response</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice minOccurs="1" maxOccurs="1">
<xs:element name="InLine" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Second-level element surrounding complete ad data for a single ad</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AdSystem" minOccurs="1" maxOccurs="1" type="AdSystem_type">
<xs:annotation>
<xs:documentation>Indicates source ad server</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdTitle" minOccurs="1" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Common name of ad</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Description" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Longer description of ad</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Survey" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL of request to survey vendor</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Error" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL to request if ad does not play due to error</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Impression" minOccurs="1" maxOccurs="unbounded" type="Impression_type">
<xs:annotation>
<xs:documentation>URL to track impression</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Creatives" minOccurs="1" maxOccurs="1">
<xs:annotation>
<xs:documentation>Any number of companions in any desired pixel dimensions.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="Creative" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Wraps each creative element within an InLine or Wrapper Ad</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:choice>
<xs:element name="Linear" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Duration" minOccurs="1" maxOccurs="1" type="xs:time">
<xs:annotation>
<xs:documentation>Duration in standard time format, hh:mm:ss</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TrackingEvents" minOccurs="0" maxOccurs="1" type="TrackingEvents_type" />
<xs:element name="AdParameters" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Data to be passed into the video ad</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VideoClicks" minOccurs="0" maxOccurs="1" type="VideoClicks_type" />
<xs:element name="MediaFiles" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="MediaFile" minOccurs="1" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>Location of linear file</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Optional identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="delivery" use="required">
<xs:annotation>
<xs:documentation>Method of delivery of ad</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="streaming" />
<xs:enumeration value="progressive" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="type" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>MIME type. Popular MIME types include, but are not limited to “video/x-ms-wmv” for Windows Media, and “video/x-flv” for Flash Video. Image ads or interactive ads can be included in the MediaFiles section with appropriate Mime types</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="bitrate" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>Bitrate of encoded video in Kbps</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="width" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of video</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of video</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="scalable" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation>Whether it is acceptable to scale the image.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maintainAspectRatio" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation>Whether the ad must have its aspect ratio maintained when scales</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="apiFramework" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The apiFramework defines the method to use for communication if the MediaFile is interactive. Suggested values for this element are “VPAID”, “FlashVars” (for Flash/Flex), “initParams” (for Silverlight) and “GetVariables” (variables placed in key/value pairs on the asset request).</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CompanionAds" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Companion" minOccurs="0" maxOccurs="unbounded" type="Companion_type">
<xs:annotation>
<xs:documentation>Any number of companions in any desired pixel dimensions.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="NonLinearAds" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="TrackingEvents" minOccurs="0" maxOccurs="1" type="TrackingEvents_type" />
<xs:element name="NonLinear" minOccurs="1" maxOccurs="unbounded" type="NonLinear_type">
<xs:annotation>
<xs:documentation>Any number of companions in any desired pixel dimensions.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="id" type="xs:string" use="optional" />
<xs:attribute name="sequence" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>The preferred order in which multiple Creatives should be displayed</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AdID" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Ad-ID for the creative (formerly ISCI)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Extensions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Extension" minOccurs="0" maxOccurs="unbounded" type="xs:anyType">
<xs:annotation>
<xs:documentation>Any valid XML may be included in the Extensions node</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Wrapper" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>Second-level element surrounding wrapper ad pointing to Secondary ad server.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="AdSystem" minOccurs="1" maxOccurs="1" type="AdSystem_type">
<xs:annotation>
<xs:documentation>Indicates source ad server</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="VASTAdTagURI" minOccurs="1" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL of ad tag of downstream Secondary Ad Server</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Error" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL to request if ad does not play due to error</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Impression" minOccurs="1" maxOccurs="unbounded" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL to request to track an impression</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="Creatives">
<xs:complexType>
<xs:sequence>
<xs:element name="Creative" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:choice>
<xs:element name="Linear" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="TrackingEvents" minOccurs="0" maxOccurs="1" type="TrackingEvents_type" />
<xs:element name="VideoClicks" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="ClickTracking" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>URL to request for tracking purposes when user clicks on the video</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="CompanionAds" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Companion" minOccurs="0" maxOccurs="unbounded" type="Companion_type">
<xs:annotation>
<xs:documentation>Definition of Companion ad, if served separately</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="NonLinearAds" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="TrackingEvents" minOccurs="0" maxOccurs="1" type="TrackingEvents_type" />
<xs:element name="NonLinear" minOccurs="0" maxOccurs="unbounded" type="NonLinear_type">
<xs:annotation>
<xs:documentation>Any number of companions in any desired pixel dimensions.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="id" type="xs:string" use="optional" />
<xs:attribute name="sequence" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>The preferred order in which multiple Creatives should be displayed</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="AdID" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Ad-ID for the creative (formerly ISCI)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Extensions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="Extension" minOccurs="0" maxOccurs="unbounded" type="xs:anyType">
<xs:annotation>
<xs:documentation>Any valid XML may be included in the Extensions node</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
<xs:attribute name="id" type="xs:string" use="required" />
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="version" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Current version is 2.0. The 2.0.1 version corrects an error in the Wrapper section related the Linear node's TrackingEvents and VideoCLicks elements.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:complexType name="TrackingEvents_type">
<xs:sequence>
<xs:element name="Tracking" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>The name of the event to track for the Linear element. The creativeView should always be requested when present.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="event" use="required">
<xs:annotation>
<xs:documentation>The name of the event to track. For nonlinear ads these events should be recorded on the video within the ad.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:NMTOKEN">
<xs:enumeration value="creativeView" />
<xs:enumeration value="start" />
<xs:enumeration value="midpoint" />
<xs:enumeration value="firstQuartile" />
<xs:enumeration value="thirdQuartile" />
<xs:enumeration value="complete" />
<xs:enumeration value="mute" />
<xs:enumeration value="unmute" />
<xs:enumeration value="pause" />
<xs:enumeration value="rewind" />
<xs:enumeration value="resume" />
<xs:enumeration value="fullscreen" />
<xs:enumeration value="expand" />
<xs:enumeration value="collapse" />
<xs:enumeration value="acceptInvitation" />
<xs:enumeration value="close" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="VideoClicks_type">
<xs:sequence>
<xs:element name="ClickThrough" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>URL to open as destination page when user clicks on the video</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="ClickTracking" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>URL to request for tracking purposes when user clicks on the video</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="CustomClick" minOccurs="0" maxOccurs="unbounded">
<xs:annotation>
<xs:documentation>URLs to request on custom events such as hotspotted video</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="Companion_type">
<xs:sequence>
<xs:choice>
<xs:element name="StaticResource" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>URL to a static file, such as an image or SWF file</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="creativeType" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Mime type of static resource</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="IFrameResource" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL source for an IFrame to display the companion element</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HTMLResource" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>HTML to display the companion element</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="TrackingEvents" minOccurs="0" maxOccurs="1" type="TrackingEvents_type">
<xs:annotation>
<xs:documentation>The creativeView should always be requested when present. For Companions creativeView is the only supported event.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="CompanionClickThrough" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL to open as destination page when user clicks on the the companion banner ad.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AltText" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Alt text to be displayed when companion is rendered in HTML environment.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdParameters" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Data to be passed into the companion ads. The apiFramework defines the method to use for communication (e.g. “FlashVar”)</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Optional identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="width" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of companion</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of companion</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="expandedWidth" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>Pixel dimensions of expanding companion ad when in expanded state</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="expandedHeight" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>Pixel dimensions of expanding companion ad when in expanded state</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="apiFramework" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The apiFramework defines the method to use for communication with the companion</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="NonLinear_type">
<xs:sequence>
<xs:choice>
<xs:element name="StaticResource" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>URL to a static file, such as an image or SWF file</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="creativeType" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Mime type of static resource</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:element>
<xs:element name="IFrameResource" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL source for an IFrame to display the companion element</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="HTMLResource" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>HTML to display the companion element</xs:documentation>
</xs:annotation>
</xs:element>
</xs:choice>
<xs:element name="NonLinearClickThrough" minOccurs="0" maxOccurs="1" type="xs:anyURI">
<xs:annotation>
<xs:documentation>URL to open as destination page when user clicks on the the non-linear ad unit.</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="AdParameters" minOccurs="0" maxOccurs="1" type="xs:string">
<xs:annotation>
<xs:documentation>Data to be passed into the video ad.</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Optional identifier</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="width" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of companion</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="height" type="xs:integer" use="required">
<xs:annotation>
<xs:documentation>Pixel dimensions of companion</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="expandedWidth" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>Pixel dimensions of expanding nonlinear ad when in expanded state</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="expandedHeight" type="xs:integer" use="optional">
<xs:annotation>
<xs:documentation>Pixel dimensions of expanding nonlinear ad when in expanded state</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="scalable" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation>Whether it is acceptable to scale the image.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="maintainAspectRatio" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation>Whether the ad must have its aspect ratio maintained when scales</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="minSuggestedDuration" type="xs:time" use="optional">
<xs:annotation>
<xs:documentation>Suggested duration to display non-linear ad, typically for animation to complete. Expressed in standard time format hh:mm:ss</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="apiFramework" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>The apiFramework defines the method to use for communication with the nonlinear element</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="AdSystem_type">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="version" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Internal version used by ad system</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="Impression_type">
<xs:simpleContent>
<xs:extension base="xs:anyURI">
<xs:attribute name="id" type="xs:string" use="optional" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
</xs:schema>