E-commercebeginner

Product Record JSON Example

A practical catalog product shape with pricing, images, and inventory status.

Real-world use case: Use this for product APIs, storefront cards, search indexes, and merchandising tools.
1{
2 "productId": "prd_4201",
3 "sku": "TSHIRT-BLK-M",
4 "name": "Performance Tee",
5 "price": 29.99,
6 "currency": "USD",
7 "inStock": true,
8 "imageUrl": "https://cdn.example.com/products/performance-tee-black.jpg"
9}

Where this shape shows up in production

Storefront APIs
Product feeds
Catalog imports

Related examples