The following is a ndJSON (Newline Delimited JSON) data sample of 20 products, containing the required data fields of a typical implementation:
Download the sample-athos.json file via the attachment at the bottom of this article.
{
"Product ID":"5671290",
"SKU":"HEH-2245-RSWD-SM",
"Name":"Simply Sweet Tshirt",
"Product URL":"https://www.domain.com/product/heh-2245",
"Price":42,
"Retail Price":59.95,
"Thumbnail URL":"https://www.domain.com/images/heh-2245_600x600.png",
"__parent_id":"7615",
"__parent_title":"Simply Sweet Tshirt",
"__parent_image":"https://www.domain.com/images/heh-2245_600x600.png",
"__standard_options":{
"Color":{
"position":1,
"values":[
"Rosewood",
"Thyme Green"
]
},
"Size":{
"position":2,
"values":[
"Small",
"Medium"
]
}
},
"__variant_position":1,
"__in_stock":true,
"__in_stock_pct":100,
"__swatch_options":{
"Color":{
"value":"Rosewood",
"colors":[
"#65000b"
],
"image":"/images/heh-2245-rswd-sm_600x600.png"
}
},
"__group_by_swatch":true,
"__selected_options":{
"Color":{
"value":"Rosewood"
},
"Size":{
"value":"Small"
}
}
},
{
"Product ID":"678123",
"SKU":"HEH-2245-RSWD-MD",
"Name":"Simply Sweet Tshirt",
"Product URL":"https://www.domain.com/product/heh-2245",
"Price":42,
"Retail Price":59.95,
"Thumbnail URL":"https://www.domain.com/images/heh-2245_600x600.png",
"__parent_id":"7615",
"__parent_title":"Simply Sweet Tshirt",
"__parent_image":"https://www.domain.com/images/heh-2245_600x600.png",
"__standard_options":{
"Color":{
"position":1,
"values":[
"Rosewood",
"Thyme Green"
]
},
"Size":{
"position":2,
"values":[
"Small",
"Medium"
]
}
},
"__variant_position":2,
"__in_stock":true,
"__in_stock_pct":100,
"__swatch_options":{
"Color":{
"value":"Rosewood",
"colors":[
"#65000b"
],
"image":"/images/heh-2245-rswd-sm_600x600.png"
}
},
"__group_by_swatch":false,
"__selected_options":{
"Color":{
"value":"Rosewood"
},
"Size":{
"value":"Medium"
}
}
},
{
"Product ID":"512345",
"SKU":"HEH-2245-THGR-SM",
"Name":"Simply Sweet Tshirt",
"Product URL":"https://www.domain.com/product/heh-2245",
"Price":59.99,
"Retail Price":59.95,
"Thumbnail URL":"https://www.domain.com/images/heh-2245_600x600.png",
"__parent_id":"7615",
"__parent_title":"Simply Sweet Tshirt",
"__parent_image":"https://www.domain.com/images/heh-2245_600x600.png",
"__standard_options":{
"Color":{
"position":1,
"values":[
"Rosewood",
"Thyme Green"
]
},
"Size":{
"position":2,
"values":[
"Small",
"Medium"
]
}
},
"__variant_position":3,
"__in_stock":true,
"__in_stock_pct":100,
"__swatch_options":{
"Color":{
"value":"Thyme Green",
"image":"/swatches/thyme_green.png"
}
},
"__group_by_swatch":true,
"__selected_options":{
"Color":{
"value":"Thyme Green"
},
"Size":{
"value":"Small"
}
}
},
{
"Product ID":"234567",
"SKU":"HEH-2245-THGR-MD",
"Name":"Simply Sweet Tshirt",
"Product URL":"https://www.domain.com/product/heh-2245",
"Price":59.99,
"Retail Price":59.95,
"Thumbnail URL":"https://www.domain.com/images/heh-2245_600x600.png",
"__parent_id":"7615",
"__parent_title":"Simply Sweet Tshirt",
"__parent_image":"https://www.domain.com/images/heh-2245_600x600.png",
"__standard_options":{
"Color":{
"position":1,
"values":[
"Rosewood",
"Thyme Green"
]
},
"Size":{
"position":2,
"values":[
"Small",
"Medium"
]
}
},
"__variant_position":4,
"__in_stock":true,
"__in_stock_pct":100,
"__swatch_options":{
"Color":{
"value":"Thyme Green",
"image":"/swatches/thyme_green.png"
}
},
"__group_by_swatch":false,
"__selected_options":{
"Color":{
"value":"Thyme Green"
},
"Size":{
"value":"Medium"
}
}
},
{
"Product ID":7463,
"SKU":"WKS-5026",
"Name":"Silver Lining Dress",
"Product URL":"https://www.domain.com/product/wks-5026",
"Price":62,
"Retail Price":62,
"Thumbnail URL":"https://www.domain.com/images/wks-5026_600x600.png",
"Search Keywords":"lorem, ipsum, dolor, ...",
"Description":"Sociosqu facilisis duis ...",
"Category":"Dresses>Formal Dresses|All Dresses",
"Category ID":"220|201",
"Brand":"Temptation",
"__group_by_swatch":false,
}Notes
- Each product object representation must exist in a new line of its own.
- Multiple levels within the product object will be flattened, only accounting for the keys at the lowest level.
Comments
0 comments
Article is closed for comments.