-
Notifications
You must be signed in to change notification settings - Fork 6
/
structure.json
57 lines (57 loc) · 1.3 KB
/
structure.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
{
"data": [
{
"id": "1",
"resumeName": "resume1",
"mainInfo": {
"sectionName": "mainInfo",
"name": "John",
"phone": "1234567890",
"city": "New York",
"jobTitle": "Software Engineer",
"email": "[email protected]",
"links": [
{
"name": "LinkedIn",
"url": "https://www.linkedin.com"
},
{
"name": "Github",
"url": "222"
}
]
},
"profileInfo": {
"sectionName": "profileInfo",
"profileDescription": "profile1 description"
},
"educationInfo": {
"sectionName": "profileInfo",
"educations": [
{
"schoolName": "school1",
"degree": "degree1",
"fieldOfStudy": "fieldOfStudy1",
"startDate": "startDate1",
"endDate": "endDate1",
"schoolCity": "schoolCity1",
"schoolCountry": "schoolCountry1"
}
]
},
"Skills": {
"sectionName": "Skills",
"skills": [
{
"skillName": "skill1",
"skillLevel": "skillLevel1"
},
{
"skillName": "skill2",
"skillLevel": "skillLevel2"
}
]
}
}
]
}