Product JSON Example

A typical product object for e-commerce and catalogs.

Example

{
  "sku": "JSN-100",
  "title": "JSON Notebook",
  "price": 12.99,
  "currency": "USD",
  "inStock": true,
  "variants": [
    {"color": "black", "size": "A5"},
    {"color": "blue", "size": "A5"}
  ]
}

Explanation

This shape works well for product listings, search results and order lines.