Skip to content

Commit

Permalink
Fix xsd schema load error with particles.
Browse files Browse the repository at this point in the history
Modified from all to sequence.
Updated release notes.
  • Loading branch information
goosemanjack committed Jul 31, 2019
1 parent 0177ef0 commit aaa54ae
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
11 changes: 11 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@

VAST Release Notes
===================
4.2
---
Updated for compliance with 4.2 spec Aug 1, 2019.
You may diff files "vast_4.1.xsd" and "vast_4.2.xsd"

* Allow multiple UniversalAdId elements
* Modify Creative_Base_type to use sequence instead of all to allow for multiple UniversalAdId values
* Addition of IconClickFallbackImages element and sub elements
* Modify Icons element to use sequence instead of all to allow for multiple Icon values
* Updated with references to SIMID in notes.

4.1
---
Updated to match 4.1 draft for public comment June 4, 2018.
Expand Down
4 changes: 2 additions & 2 deletions vast_4.2.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -947,7 +947,7 @@
<xs:complexType name="Creative_Inline_type">
<xs:complexContent>
<xs:extension base="vast:Creative_Base_type">
<xs:all>
<xs:sequence>
<xs:element name="CompanionAds" minOccurs="0" maxOccurs="1" type="vast:CompanionAds_Collection_type" />
<xs:element name="CreativeExtensions" minOccurs="0" maxOccurs="1" type="vast:CreativeExtensions_type" />
<xs:element name="Linear" minOccurs="0" maxOccurs="1" type="vast:Linear_Inline_type" />
Expand Down Expand Up @@ -975,7 +975,7 @@
</xs:simpleContent>
</xs:complexType>
</xs:element>
</xs:all>
</xs:sequence>
</xs:extension>
</xs:complexContent>
</xs:complexType>
Expand Down

0 comments on commit aaa54ae

Please sign in to comment.