32 lines
666 B
JSON
32 lines
666 B
JSON
{
|
|
"product_id": "SKU12345",
|
|
"name": "Example Product",
|
|
"description": "This is an example product.",
|
|
"category": "Electronics",
|
|
"price": 199.99,
|
|
"stock_quantity": 50,
|
|
"manufacturer": "TechCo",
|
|
"release_date": "2022-05-10",
|
|
"is_available": true,
|
|
"ratings": {
|
|
"average": 4.5,
|
|
"total": 100
|
|
},
|
|
"reviews": [
|
|
{
|
|
"user": "user123",
|
|
"rating": 5,
|
|
"review_text": "Great product, highly recommended!"
|
|
},
|
|
{
|
|
"user": "user456",
|
|
"rating": 4,
|
|
"review_text": "Good value for the price."
|
|
},
|
|
{
|
|
"user": "user450",
|
|
"rating": 4,
|
|
"review_text": "Good value for the price."
|
|
}
|
|
]
|
|
} |