| 7487 |
kshitij.so |
1 |
<?xml version="1.0"?>
|
|
|
2 |
<!-- Revision="$Revision: #3 $" -->
|
|
|
3 |
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
|
|
|
4 |
<!--
|
|
|
5 |
$Date: 2006/11/17 $
|
|
|
6 |
|
|
|
7 |
AMAZON.COM CONFIDENTIAL. This document and the information contained in it are
|
|
|
8 |
confidential and proprietary information of Amazon.com and may not be reproduced,
|
|
|
9 |
distributed or used, in whole or in part, for any purpose other than as necessary
|
|
|
10 |
to list products for sale on the www.amazon.com web site pursuant to an agreement
|
|
|
11 |
with Amazon.com.
|
|
|
12 |
-->
|
|
|
13 |
<xsd:include schemaLocation="amzn-base.xsd"/>
|
|
|
14 |
<xsd:element name="Price">
|
|
|
15 |
<xsd:complexType>
|
|
|
16 |
<xsd:sequence>
|
|
|
17 |
<xsd:element ref="SKU"/>
|
|
|
18 |
<xsd:element name="StandardPrice" type="OverrideCurrencyAmount"/>
|
|
|
19 |
<xsd:element name="MAP" type="OverrideCurrencyAmount" minOccurs="0"/>
|
|
|
20 |
<xsd:element name="DepositAmount" type="CurrencyAmountWithDefault" minOccurs="0"/>
|
|
|
21 |
<xsd:element name="Sale" minOccurs="0">
|
|
|
22 |
<xsd:complexType>
|
|
|
23 |
<xsd:sequence>
|
|
|
24 |
<xsd:element name="StartDate" type="xsd:dateTime"/>
|
|
|
25 |
<xsd:element name="EndDate" type="xsd:dateTime"/>
|
|
|
26 |
<xsd:element name="SalePrice" type="OverrideCurrencyAmount"/>
|
|
|
27 |
</xsd:sequence>
|
|
|
28 |
</xsd:complexType>
|
|
|
29 |
</xsd:element>
|
|
|
30 |
<xsd:element name="Previous" type="DatedPrice" minOccurs="0"/>
|
|
|
31 |
</xsd:sequence>
|
|
|
32 |
</xsd:complexType>
|
|
|
33 |
</xsd:element>
|
|
|
34 |
<xsd:simpleType name="BaseCurrencyCodeWithDefault">
|
|
|
35 |
<xsd:restriction base="xsd:string">
|
|
|
36 |
<xsd:enumeration value="USD"/>
|
|
|
37 |
<xsd:enumeration value="GBP"/>
|
|
|
38 |
<xsd:enumeration value="EUR"/>
|
|
|
39 |
<xsd:enumeration value="JPY"/>
|
|
|
40 |
<xsd:enumeration value="CAD"/>
|
|
|
41 |
<xsd:enumeration value="DEFAULT"/>
|
|
|
42 |
</xsd:restriction>
|
|
|
43 |
</xsd:simpleType>
|
|
|
44 |
<xsd:complexType name="CurrencyAmountWithDefault">
|
|
|
45 |
<xsd:simpleContent>
|
|
|
46 |
<xsd:extension base="BaseCurrencyAmount">
|
|
|
47 |
<xsd:attribute name="currency" type="BaseCurrencyCodeWithDefault" use="required"/>
|
|
|
48 |
</xsd:extension>
|
|
|
49 |
</xsd:simpleContent>
|
|
|
50 |
</xsd:complexType>
|
|
|
51 |
<xsd:complexType name="OverrideCurrencyAmount">
|
|
|
52 |
<xsd:simpleContent>
|
|
|
53 |
<xsd:extension base="CurrencyAmountWithDefault">
|
|
|
54 |
<xsd:attribute name="zero" type="xsd:boolean" use="optional"/>
|
|
|
55 |
</xsd:extension>
|
|
|
56 |
</xsd:simpleContent>
|
|
|
57 |
</xsd:complexType>
|
|
|
58 |
</xsd:schema>
|
|
|
59 |
|