forked from devtheorycode/nuxt3-course
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
15 lines (15 loc) · 995 Bytes
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"products": [
{ "id": 1, "name": "Sweatshirt", "price": 39, "imageName": "product_sweatshirt.png", "variants": ["XS", "S", "M", "L", "XL", "2XL"], "defaultVariant": "M", "category": "body" },
{ "id": 2, "name": "T-shirt", "price": 19, "imageName": "product_tshirt.png", "variants": ["XS", "S", "M", "L", "XL", "2XL"], "defaultVariant": "M", "category": "body" },
{ "id": 3, "name": "Mug", "price": 19, "imageName": "product_mug.png", "category": "other" },
{ "id": 4, "name": "Cap", "price": 19, "imageName": "product_cap.png", "category": "head" },
{ "id": 5, "name": "Beanie", "price": 19, "imageName": "product_beanie.png", "category": "head" }
],
"reviews": [
{ "id": 1, "productId": 1, "rating": 5, "comment": "Great product!" },
{ "id": 2, "productId": 1, "rating": 5, "comment": "Great product!" },
{ "id": 3, "productId": 2, "rating": 4, "comment": "Nice product!" },
{ "id": 4, "productId": 2, "rating": 5, "comment": "Great product!" }
]
}