-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsample.js
94 lines (91 loc) · 1.99 KB
/
sample.js
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
exports.data = {
"employees": [
{
"name": "Mike",
"github": "mbmcmullen27",
"id": 0
},
{
"name": "Dan",
"github": "dkoch84",
"id": 1
}
],
"history": [
{id: 0, employeeId: 0, employeeName: "Mike", contractId: 0, clientId: 0, clientName: "LazerFile", role: "engineer"},
{id: 1, employeeId: 0, employeeName: "Mike", contractId: 1, clientId: 1, clientName: "FintechGiant", role: "engineer"},
{id: 2, employeeId: 0, employeeName: "Mike", contractId: 2, clientId: 2, clientName: "ABC", role: "engineer"},
{id: 3, employeeId: 1, employeeName: "Dan", contractId: 0, clientId: 0, clientName: "LazerFile", role: "architect"},
{id: 4, employeeId: 1, employeeName: "Dan", contractId: 3, clientId: 3, clientName: "The Big Software Store", role: "architect"}
],
"clients": [
{
"id": 0,
"name": "LazerFile"
},
{
"id": 1,
"name": "FintechGiant"
},
{
"id": 2,
"name": "ABC"
},
{
"id": 3,
"name": "The Big Software Store"
},
],
"contracts": [
{
"id": 0,
"clientId": 0,
"type": "app migration",
"startDate": "9/2/2022",
"endDate": "12/14/2022",
"tech": [
"openshift",
"aws",
"cloudformation",
"argocd",
"jboss"
]
},
{
"id": 1,
"clientId": 1,
"type": "containerization",
"startDate": "9/2/2022",
"endDate": "12/14/2022",
"tech": [
"openshift",
"aws",
"cloudformation",
"argocd",
"jboss"
]
},
{
"id": 2,
"clientId": 2,
"type": "modernization",
"startDate": "9/2/2022",
"endDate": "12/14/2022",
"tech": [
"rancher",
"gitlab",
"vsphere"
]
},
{
"id": 3,
"clientId": 3,
"type": "github migration",
"startDate": "9/2/2022",
"endDate": "12/14/2022",
"tech": [
"github"
]
}
]
}