-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
152 lines (152 loc) · 4.45 KB
/
db.json
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"departments": [
"Orthopedic",
"Dental service",
"Neurology",
"Emergency department",
"Diagnosis department",
"Therapy deparment"
],
"doctors": [
"Dr. Perry Barkley",
"Dr. Crystal Fitzhugh",
"Dr. Helen Scheffler",
"Dr. Gail Perrish",
"Dr. Charles Gordon",
"Dr. Mattie Delgado",
"Dr. Verna Leto",
"Dr. Annie Murrow"
],
"users": [
{
"id": 1,
"name": "Hattie M.",
"lastname": "Nelson",
"username": "hmnelson",
"age": 68,
"email": "hattiemnelson@gustr.com",
"password": "jeipiso1Ei",
"cart": []
},
{
"id": 2,
"name": "Theo",
"lastname": "Cedillo Noriega",
"username": "beill1943",
"age": 78,
"email": "theocedillo@gmail.com",
"password": "cuong0Ah",
"cart": []
},
{
"username": "daniel453",
"email": "mons@gmail.com",
"password": "123456",
"conditions": "on",
"id": 3,
"cart": []
},
{
"username": "danielm56",
"email": "monsal@gmail.com",
"password": "12345",
"conditions": "on",
"id": 4,
"cart": []
},
{
"username": "daniel45",
"email": "monsq@gmail.com",
"password": "sadjkas",
"id": 5,
"cart": []
}
],
"products": [
{
"id": 1,
"title": "Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops",
"price": 109.95,
"description": "Your perfect pack for everyday use and walks in the forest. Stash your laptop (up to 15 inches) in the padded sleeve, your everyday",
"category": "men's clothing",
"image": "https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg",
"rating": {
"rate": 3.9,
"count": 120
}
},
{
"id": 2,
"title": "Mens Casual Premium Slim Fit T-Shirts ",
"price": 22.3,
"description": "Slim-fitting style, contrast raglan long sleeve, three-button henley placket, light weight & soft fabric for breathable and comfortable wearing. And Solid stitched shirts with round neck made for durability and a great fit for casual fashion wear and diehard baseball fans. The Henley style round neckline includes a three-button placket.",
"category": "men's clothing",
"image": "https://fakestoreapi.com/img/71-3HjGNDUL._AC_SY879._SX._UX._SY._UY_.jpg",
"rating": {
"rate": 4.1,
"count": 259
}
},
{
"id": 3,
"title": "Mens Cotton Jacket",
"price": 55.99,
"description": "great outerwear jackets for Spring/Autumn/Winter, suitable for many occasions, such as working, hiking, camping, mountain/rock climbing, cycling, traveling or other outdoors. Good gift choice for you or your family member. A warm hearted love to Father, husband or son in this thanksgiving or Christmas Day.",
"category": "men's clothing",
"image": "https://fakestoreapi.com/img/71li-ujtlUL._AC_UX679_.jpg",
"rating": {
"rate": 4.7,
"count": 500
}
},
{
"id": 4,
"title": "Mens Casual Slim Fit",
"price": 15.99,
"description": "The color could be slightly different between on the screen and in practice. / Please note that body builds vary by person, therefore, detailed size information should be reviewed below on the product description.",
"category": "men's clothing",
"image": "https://fakestoreapi.com/img/71YXzeOuslL._AC_UY879_.jpg",
"rating": {
"rate": 2.1,
"count": 430
}
}
],
"carts": [
{
"title": "Fjallraven - Foldsack No. 1 Backpack, Fits 15 Laptops",
"price": 109.95,
"image": "https://fakestoreapi.com/img/81fPKd-2AYL._AC_SL1500_.jpg",
"quantity": 3,
"id": 1
},
{
"title": "Mens Casual Premium Slim Fit T-Shirts ",
"price": 22.3,
"image": "https://fakestoreapi.com/img/71-3HjGNDUL._AC_SY879._SX._UX._SY._UY_.jpg",
"quantity": 2,
"id": 2
},
{
"title": "Mens Casual Slim Fit",
"price": 15.99,
"image": "https://fakestoreapi.com/img/71YXzeOuslL._AC_UY879_.jpg",
"quantity": 112,
"id": 3
},
{
"title": "Mens Casual Slim Fit",
"price": 15.99,
"image": "https://fakestoreapi.com/img/71YXzeOuslL._AC_UY879_.jpg",
"quantity": 112,
"id": 4
},
{
"title": "Mens Cotton Jacket",
"price": 55.99,
"image": "https://fakestoreapi.com/img/71li-ujtlUL._AC_UX679_.jpg",
"quantity": 12,
"id": 5
}
]
}