JSON example
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[ { "itemID": "28755-5", "itemGroupID": "28755", "hierarchyText": ["Men's: Men's Casual clothing:T-shirts for Men", "Summer picks:Unisex:Unisex T-shirts"], "hierarchyID": ["111:222:333", "555:666:777"], "categoryId": ["333", "777"], "title": "Frame T-shirt", "brand": "Blanc Ts", "description": "T-shirt with round neck with a rectangle", "price": 20, "isMaster": false, "priceOriginal": 30, "link": "http://eshop.com/t-shirts/frame-t-shirt.html", "imageLink": "http://eshop.com/images/small/64464646.jpg", "additionalImageLink": ["http://eshop.com/images/small/64464647.jpg","http://eshop.com/images/small/64464648.jpg"], "available": 4, "availability": "Usually within 14 days", "size": "L" }, ... ] |
Google Product Content API v2 XML
Example of 1 product feed item using Google Specifications.
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 |
<?xml version="1.0" encoding="utf-8"?> <rss version="2.0" xmlns:g="http://base.google.com/ns/1.0"> <channel> ... <product> <title>Frame T-shirt</title> <link>http://eshop.com/t-shirts/frame-t-shirt.html</link> <description>T-shirt with round neck with a rectangle</description> <id>28752</id> <item_group_id>28755</item_group_id> <hierarchy>111:222:333</hierarchy> <hierarchy>555:666:777</hierarchy> <hierarchy_text>Clothing > Men > T-Shirts</hierarchy_text> <hierarchy_text>Summer Collection > Men > Hawaii</hierarchy_text> <is_master>false</is_master> <price>20.00</price> <price_original>30.00</price_original> <availability>Usually within 14 days</availability> <available>15</available> <brand>Blanc Ts</brand> <size>L</size> <image_link>http://eshop.com/images/small/64464646.jpg</image_link> <additional_image_link>http://eshop.com/images/small/64464647.jpg</additional_image_link> <manual_alternatives>28863,28849</manual_alternatives> <manual_crosssell>28897,28444,3549</manual_crosssell> </product> ... </channel> </rss> |