-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.json
More file actions
115 lines (115 loc) · 2.65 KB
/
db.json
File metadata and controls
115 lines (115 loc) · 2.65 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
{
"categories": [
{
"id": 1,
"name": "Electronics",
"description": "Devices, gadgets, and tech accessories."
},
{
"id": 2,
"name": "Books",
"description": "Fiction, non-fiction, and educational books."
},
{
"id": 3,
"name": "Clothing",
"description": "Men's and women's clothing for all seasons."
}
],
"products": [
{
"id": 1,
"name": "Wireless Headphones",
"price": 99.99,
"categoryId": 1,
"description": "Noise-cancelling over-ear headphones with Bluetooth 5.0.",
"image": "https://example.com/products/headphones.jpg",
"stock": 25
},
{
"id": 2,
"name": "Modern JavaScript Book",
"price": 29.95,
"categoryId": 2,
"description": "A practical guide to modern JavaScript development.",
"image": "https://example.com/products/jsbook.jpg",
"stock": 50
},
{
"id": 3,
"name": "Men's Casual T-Shirt",
"price": 19.99,
"categoryId": 3,
"description": "100% cotton, available in multiple colors and sizes.",
"image": "https://example.com/products/tshirt.jpg",
"stock": 100
}
],
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"address": "123 Main St, Springfield",
"role": "customer"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"address": "456 Oak Ave, Metropolis",
"role": "customer"
},
{
"id": 3,
"name": "Admin User",
"email": "admin@example.com",
"address": "789 Admin Rd, Capital City",
"role": "admin"
}
],
"users": [
{
"id": 1,
"name": "Alice Johnson",
"email": "alice@example.com",
"address": "123 Main St, Springfield",
"role": "customer"
},
{
"id": 2,
"name": "Bob Smith",
"email": "bob@example.com",
"address": "456 Oak Ave, Metropolis",
"role": "customer"
},
{
"id": 3,
"name": "Charlie Lee",
"email": "charlie.lee@example.com",
"address": "101 Market St, Bay City",
"role": "customer"
},
{
"id": 4,
"name": "Diana Evans",
"email": "diana.evans@example.com",
"address": "88 Broadway, Gotham",
"role": "customer"
},
{
"id": 5,
"name": "Ethan Brown",
"email": "ethan.brown@example.com",
"address": "12 Elm Street, Star City",
"role": "customer"
},
{
"id": 6,
"name": "Admin User",
"email": "admin@example.com",
"address": "789 Admin Rd, Capital City",
"role": "admin"
}
]
}