-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathdatabase.json
84 lines (84 loc) · 1.22 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
75
76
77
78
79
80
81
82
83
84
{
"products": [
{
"id": 1,
"name": "Product001",
"cost": 10.0,
"quantity": 1000,
"locationId": 1,
"familyId": 1
},
{
"id": 2,
"name": "Product002",
"cost": 20.0,
"quantity": 2000,
"locationId": 1,
"familyId": 2
},
{
"id": 3,
"name": "Product003",
"cost": 30.0,
"quantity": 3000,
"locationId": 3,
"familyId": 2
},
{
"id": 4,
"name": "Product004",
"cost": 40.0,
"quantity": 4000,
"locationId": 2,
"familyId": 3
}
],
"locations": [
{
"id": 1,
"name": "Location001"
},
{
"id": 2,
"name": "Location002"
},
{
"id": 3,
"name": "Location003"
}
],
"families": [
{
"id": 1,
"name": "FM001"
},
{
"id": 2,
"name": "FM002"
},
{
"id": 3,
"name": "FM003"
}
],
"transactions": [
{
"id": 1,
"cost": 11,
"quantity": 10,
"productId": 1
},
{
"id": 2,
"cost": 12,
"quantity": 100,
"productId": 2
},
{
"id": 3,
"cost": 15,
"quantity": 101,
"productId": 3
}
]
}