-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
117 lines (117 loc) · 1.95 KB
/
db.json
File metadata and controls
117 lines (117 loc) · 1.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"products": [
{
"id": 1,
"name": "Celular Samsung S20+",
"price": 1000.01,
"categoryId": 3
},
{
"id": 3,
"name": "Notebook Dell",
"price": 8999.9,
"categoryId": 4
},
{
"name": "Mouse Logitech",
"price": "299.89",
"id": 4,
"categoryId": 4
},
{
"name": "Celular iPhone XR",
"price": "7500.49",
"id": 6,
"categoryId": 3
},
{
"name": "Carregador de celular",
"price": "59.99",
"categoryId": 3,
"id": 7
},
{
"id": 8,
"name": "Geladeira Brastemp",
"price": 3499,
"categoryId": 5
},
{
"id": 9,
"name": "Aspirador Electrolux",
"price": 149,
"categoryId": 5
},
{
"id": 11,
"name": "TV 50\" LG",
"price": 2199.9,
"categoryId": 2
},
{
"id": 12,
"name": "Celular Xiaomi Redmi 9",
"price": 1890,
"categoryId": 3
},
{
"id": 13,
"name": "Placa de vídeo",
"price": 900,
"categoryId": 4
},
{
"id": 14,
"name": "Liquidificador Philco",
"price": 350.9,
"categoryId": 5
},
{
"id": 15,
"name": "Novo produto",
"price": 1200,
"categoryId": 4
}
],
"categories": [
{
"id": 2,
"name": "TVs"
},
{
"id": 3,
"name": "Celulares"
},
{
"id": 4,
"name": "Informática"
},
{
"id": 5,
"name": "Eletrodomésticos"
}
],
"users": [
{
"id": 1,
"name": "Thiago",
"email": "thiago@gmail.com",
"username": "thiago",
"password": "123"
},
{
"id": 2,
"name": "Lucas",
"email": "lucas@gmail.com",
"username": "lucas",
"password": "123"
},
{
"id": 3,
"name": "Vanessa",
"email": "vanessa@gmail.com",
"username": "vanessa",
"password": "123"
}
]
}