Skip to content

Commit

Permalink
add promotions element
Browse files Browse the repository at this point in the history
  • Loading branch information
stanislav-sarsanski committed May 29, 2024
1 parent c575485 commit d4c5e70
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions schema/schema.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -773,7 +773,7 @@
<xs:element type="xs:string" name="gender" minOccurs="0" maxOccurs="1" />
<xs:element type="xs:string" name="note" minOccurs="0" maxOccurs="1" />
</xs:all>
</xs:complexType>
</xs:complexType>
<xs:complexType name="prices">
<xs:annotation>
<xs:documentation>Sell, rent, deposit and auction prices.</xs:documentation>
Expand Down Expand Up @@ -890,7 +890,7 @@
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:complexType>
<!-- simple types -->
<xs:simpleType name="applicable">
<xs:annotation>
Expand Down Expand Up @@ -1977,6 +1977,21 @@
</xs:annotation>
<xs:complexType>
<xs:all>
<xs:element name="promotions" minOccurs="0" maxOccurs="1">
<xs:complexType>
<xs:sequence>
<xs:element name="promotion" minOccurs="0" maxOccurs="unbounded">
<xs:complexType>
<xs:all>
<xs:element name="name" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="start" type="xs:dateTime" minOccurs="0" maxOccurs="1" />
<xs:element name="expiration" type="xs:dateTime" minOccurs="0" maxOccurs="1" />
</xs:all>
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="options" minOccurs="0" maxOccurs="1">
<xs:annotation>
<xs:documentation>List of publisher specific custom fields</xs:documentation>
Expand Down

0 comments on commit d4c5e70

Please sign in to comment.