-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdatabase.json
74 lines (74 loc) · 1.27 KB
/
database.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
{
"users": [
{
"id": "1",
"name": "David"
}
],
"tool": [
{
"toolName": "hammer",
"toolPrice": "20",
"toolStatus": "yes",
"owner": "1",
"id": 1
},
{
"toolName": "screw driver",
"toolPrice": "5",
"toolStatus": "yes",
"owner": "1",
"id": 2
},
{
"toolName": "Nail Gun",
"toolPrice": "200",
"toolStatus": "no",
"owner": "1",
"id": 3
},
{
"toolName": "Belt Sander",
"toolPrice": "100",
"toolStatus": "no",
"owner": "1",
"id": 4
},
{
"toolName": "plane",
"toolPrice": "23",
"toolStatus": "yes",
"owner": "1",
"id": 5
}
],
"projectTools": [
{
"project": "1",
"tool": "1",
"id": 1
}
],
"project": [
{
"name": "Fix Chair",
"description": "replace broken leg of chair",
"estTime": "25 min",
"supplyCost": "25",
"finalTime": "",
"finished": "no",
"owner": "1",
"id": 1
},
{
"name": "Sand Deck",
"description": "smooth the wood on the back deck",
"estTime": "3 hrs",
"supplyCost": "20",
"finalTime": "",
"finished": "no",
"owner": "1",
"id": 2
}
]
}