-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
23 lines (23 loc) · 1.46 KB
/
server.json
File metadata and controls
23 lines (23 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"categories": [
{ "id": "tshirt", "title": "Camisetas" },
{ "id": "pants", "title": "Calças" },
{ "id": "sneakers", "title": "Tênis" }
],
"products": [
{ "id": 1, "title": "T-shirt React", "price": 19.9, "category_id": "tshirt", "slug": "t-shirt-react"},
{ "id": 2, "title": "T-shirt Next.js", "price": 21.9, "category_id": "tshirt", "slug": "t-shirt-next-js"},
{ "id": 3, "title": "T-shirt Styled Components", "price": 25.9, "category_id": "tshirt", "slug": "t-shirt-styled-components"},
{ "id": 4, "title": "Pants A", "price": 80.9, "category_id": "pants", "slug": "pants-a"},
{ "id": 5, "title": "Pants B", "price": 70.9, "category_id": "pants", "slug": "pants-b"},
{ "id": 6, "title": "Pants C", "price": 90.9, "category_id": "pants", "slug": "pants-c"},
{ "id": 7, "title": "Sneakers 1", "price": 100.9, "category_id": "sneakers", "slug": "sneakers-1"},
{ "id": 8, "title": "Sneakers 2", "price": 120.9, "category_id": "sneakers", "slug": "sneakers-2"},
{ "id": 9, "title": "Sneakers 3", "price": 110.9, "category_id": "sneakers", "slug": "sneakers-3"}
],
"recommended": [
{ "id": 2, "title": "T-shirt Next.js", "price": 21.9, "category_id": "tshirt", "slug": "t-shirt-next-js"},
{ "id": 4, "title": "Pants A", "price": 80.9, "category_id": "pants", "slug": "pants-a"},
{ "id": 7, "title": "Sneakers 1", "price": 100.9, "category_id": "sneakers", "slug": "sneakers-1"}
]
}