-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
63 lines (63 loc) · 1.04 KB
/
db.json
File metadata and controls
63 lines (63 loc) · 1.04 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
{
"users": [
{
"id": 1,
"user": "123@hey.com",
"pwd": "123"
}
],
"product": [
{
"id": 1,
"code": "json-server",
"name": "moudar",
"description": "he's cool",
"category": "25",
"quantity": "1",
"measure": "kg",
"price": "3"
},
{
"name": "yes an apple",
"description": "an apple a day keeps the doctor away",
"category": 25,
"quantity": 3,
"measure": "kg",
"price": 1,
"id": 4
},
{
"name": "kiwi",
"description": "google's megamind head",
"category": 20,
"quantity": 10,
"measure": "kg",
"price": 4,
"id": 7
},
{
"name": "omda",
"code": "XPO9asda",
"description": "123",
"category": 20,
"quantity": 3,
"measure": "kg",
"price": 3,
"id": 8
}
],
"categories": [
{
"id": 10,
"name": "newCat"
},
{
"id": 20,
"name": "food"
},
{
"id": 25,
"name": "other"
}
]
}