-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathproducts.xml
More file actions
52 lines (52 loc) · 1.43 KB
/
products.xml
File metadata and controls
52 lines (52 loc) · 1.43 KB
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
<?xml version="1.0" encoding="utf-8"?>
<catalog>
<product sku="empty_product"/>
<product sku="empty_attributes">
<attributes/>
</product>
<product sku="no_attributes">
</product>
<product sku="foo">
<attributes>
<name>Test product</name>
</attributes>
<variants>
<product sku="foo_blue">
<attributes>
<name>Test product in blue</name>
<price>15.00</price>
</attributes>
</product>
<product sku="foo_red">
<attributes>
<name>Test product in red</name>
<price>12.00</price>
</attributes>
</product>
</variants>
</product>
<product sku="bar">
<attributes>
<name>Simple test product</name>
<price>10.99</price>
</attributes>
</product>
<product sku="foobar">
<attributes>
<name>Another product</name>
<price>99.99</price>
</attributes>
<variants>
<product sku="foobar_l">
<attributes>
<size>L</size>
</attributes>
</product>
<product sku="foobar_m">
<attributes>
<size>M</size>
</attributes>
</product>
</variants>
</product>
</catalog>