-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb.json
More file actions
81 lines (81 loc) · 1.35 KB
/
db.json
File metadata and controls
81 lines (81 loc) · 1.35 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
{
"salary_type": [
{
"id": 1,
"name": "Fixed"
},
{
"id": 2,
"name": "Percentage"
}
],
"employees": [
{
"id": 1,
"full_name": "Sebastian Bach",
"post": "Manager",
"salary_type": 2,
"salary": "%"
},
{
"id": 2,
"full_name": "Stevie Wonder",
"post": "Manager",
"salary_type": 2,
"salary": "%"
},
{
"id": 3,
"full_name": "Anna Kournikova",
"post": "Bookkeeper",
"salary_type": 1,
"salary": "5000"
}
],
"deals": [
{
"id": 1,
"sellerId": 1,
"productId": 3,
"price": 15000
},
{
"id": 2,
"sellerId": 2,
"productId": 4,
"price": 20000
},
{
"id": 3,
"sellerId": 2,
"productId": 2,
"price": 25000
}
],
"assortment": [
{
"id": 1,
"brand": "BMW",
"description": "Designed For Driving Pleasure",
"price": 15000
},
{
"id": 2,
"brand": "Audi",
"description": "Truth in Engineering",
"price": 20000
},
{
"id": 3,
"brand": "Lexus",
"description": "The Relentless Pursuit of Perfection",
"price": 25000
},
{
"id": 4,
"brand": "Ford",
"description": "Everything We Do Is Driven By You",
"price": 10000
}
]
}