-
Notifications
You must be signed in to change notification settings - Fork 0
/
resume.example.json
137 lines (137 loc) · 2.91 KB
/
resume.example.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"basics": {
"name": "John Doe",
"label": "Junior Programmer",
"picture": "https://pbs.twimg.com/profile_images/773151694934847488/g0aE4CJ6_400x400.jpg",
"email": "[email protected]",
"phone": "+11 123 123 123",
"summary": "Some one word summary.\nOr you can use new lines for paragraphs.",
"location": {
"address": "1 Smith St",
"postalCode": "1010",
"city": "LA",
"countryCode": "USA",
"region": "California"
},
"profiles": [
{
"network": "LinkedIn",
"username": "John Doe",
"url": "https://www.linkedin.com/in/example/"
},
{
"network": "GitHub",
"username": "John-Doe",
"url": "https://github.com/example"
},
{
"network": "Twitter",
"username": "john",
"url": "http://twitter.com/john"
}
]
},
"work": [
{
"company": "Some company 1",
"position": "Developer",
"website": "http://company.com",
"startDate": "2018-07-01",
"endDate": "2019-12-05",
"present": true,
"summary": "Worked for the business.",
"highlights": ["Highlight 1", "Highlight 2", "Highlight 3", "Highlight 4"]
},
{
"company": "Some company 2",
"position": "Developer",
"startDate": "2018-01-01",
"endDate": "2019-12-05",
"present": false,
"summary": "Worked for the business.",
"highlights": ["Highlight 1", "Highlight 2", "Highlight 3", "Highlight 4"]
}
],
"education": [
{
"institution": "Some University",
"area": "Software engineering",
"studyType": "Bachelor",
"startDate": "2017-01-01",
"endDate": "2019-12-31",
"present": false,
"summary": "I studied here",
"gpa": "4.0",
"courses": ["Programming - 101"]
}
],
"skills": [
{
"name": "Languages",
"level": "",
"keywords": ["JavaScript", "TypeScript", "Python", "Java"]
},
{
"name": "Frontend Frameworks",
"level": "",
"keywords": ["ReactJs", "Angular"]
},
{
"name": "Backend Frameworks",
"level": "",
"keywords": ["Express", "Spring"]
}
],
"languages": [
{
"language": "English",
"fluency": "Native speaker"
}
],
"interests": [
{
"name": "Wildlife",
"keywords": ["Ferrets", "Unicorns"]
}
],
"references": [
{
"name": "Jane Doe",
"reference": "Reference..."
}
],
"certificates": [{
"name": "Certificate",
"date": "2021-11-07",
"issuer": "Company",
"url": "https://certificate.com"
}],
"volunteer": [
{
"organization": "Organization",
"position": "Volunteer",
"website": "http://organization.com/",
"startDate": "2012-01-01",
"endDate": "2013-01-01",
"summary": "Description...",
"highlights": ["Awarded 'Volunteer of the Month'"]
}
],
"awards": [
{
"title": "Award",
"date": "2014-11-01",
"awarder": "Company",
"summary": "There is no spoon."
}
],
"publications": [
{
"name": "Publication",
"publisher": "Company",
"releaseDate": "2014-10-01",
"website": "http://publication.com",
"summary": "Description......"
}
]
}