-
Notifications
You must be signed in to change notification settings - Fork 2
/
types.ts
313 lines (223 loc) · 6.58 KB
/
types.ts
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
export interface Location {
// To add multiple address lines, use \n. For example, 1234 Glücklichkeit Straße\nHinterhaus 5. Etage li.
address: string;
// Current address' postal code, format accoridng to your country
postalCode: string;
// The address' city
city: string;
// code as per ISO-3166-1 ALPHA-2, e.g. US, AU, IN
countryCode: string;
// The general region where you live. Can be a US state, or a province, for instance.
region: string;
}
export interface Profile {
// e.g. Facebook or Twitter
network: string;
// e.g. neutralthoughts
username: string;
// e.g. http://twitter.example.com/neutralthoughts
url: string;
}
export interface Basic {
// Your name
name: string;
// Current description, e.g. Web Developer
label?: string;
// URL (as per RFC 3986) to a image in JPEG or PNG format
image?: string;
// e.g. thomas@gmail.com
email?: string;
// Phone numbers are stored as strings so use any format you like, e.g. 712-117-2923
phone?: string;
// URL (as per RFC 3986) to your website, e.g. personal homepage
url?: string;
// Write a short 2-3 sentence biography about yourself
summary?: string;
// Your current location information, sensitive
location?: Location;
// Specify any number of social networks that you participate in
profiles?: Profile[];
}
export interface Work {
// e.g. Facebook
name: string;
// e.g. Menlo Park, CA
location?: string;
// e.g. Social Media Company
description?: string;
// e.g. Software Engineer
position?: string;
// e.g. http://facebook.example.com
url?: string;
// resume.json uses the ISO 8601 date standard e.g. 2014-06-29
startDate?: string;
// e.g. 2012-06-29
endDate?: string;
// Give an overview of your responsibilities at the company
summary?: string;
// Specify multiple accomplishments, e.g. Increased profits by 20% from 2011-2012 through viral advertising
highlights?: string[];
}
export interface Volunteer {
// e.g. Facebook
organization: string;
// e.g. Software Engineer
position?: string;
// e.g. http://facebook.example.com
url?: string;
// resume.json uses the ISO 8601 date standard e.g. 2014-06-29
startDate?: string;
// e.g. 2012-06-29
endDate?: string;
// Give an overview of your responsibilities at the company
summary?: string;
// Specify multiple accomplishments, e.g. Increased profits by 20% from 2011-2012 through viral advertising
highlights?: string[];
}
export interface Education {
// e.g. Massachusetts Institute of Technology
institution: string;
// e.g. Arts
area?: string;
// e.g. Bachelor
studyType?: string;
// resume.json uses the ISO 8601 date standard e.g. 2014-06-29
startDate?: string;
// e.g. 2012-06-29
endDate?: string;
// grade point average, e.g. 3.67/4.0
gpa?: string;
// List notable courses/subjects, e.g. H1302 - Introduction to American history
courses?: string[];
}
export interface Award {
// e.g. One of the 100 greatest minds of the century
title: string;
// e.g. 1989-06-12
date?: string;
// e.g. Time Magazine
awarder?: string;
// e.g. Received for my work with Quantum Physics
summary?: string;
}
export interface Publication {
// e.g. The World Wide Web
name: string;
// e.g. IEEE, Computer Magazine
publisher?: string;
// e.g. 1990-08-01
releaseDate?: string;
// e.g. http://www.computer.org.example.com/csdl/mags/co/1996/10/rx069-abs.html
url?: string;
// Short summary of publication. e.g. Discussion of the World Wide Web, HTTP, HTML.
summary?: string;
}
export interface Skill {
// e.g. Web Development
name: string;
// "e.g. Master
level?: string;
// List some keywords pertaining to this skill, e.g. HTML
keywords?: string[];
}
export interface Language {
// e.g. English, Spanish
language: string;
// e.g. Fluent, Beginner
fluency?: string;
}
export interface Interest {
// e.g. Philosophy
name: string;
// List some keywords pertaining to this interest, e.g. Friedrich Nietzsche
keywords?: string[];
}
export interface Reference {
// e.g. Timothy Cook
name: string;
// e.g. Joe blogs was a great employee, who turned up to work at least once a week. He exceeded my expectations
// when it came to doing nothing.
reference?: string;
}
export interface Project {
// e.g. The World Wide Web
name: string;
// Short summary of project. e.g. Collated works of 2017.
description?: string;
// Specify multiple features, e.g. Directs you close but not quite there
highlights?: string[];
// Specify special elements involved, e.g. AngularJS
keywords?: string[];
// resume.json uses the ISO 8601 date standard e.g. 2014-06-29
startDate?: string;
// e.g. 2012-06-29
endDate?: string;
// e.g. http://www.computer.org/csdl/mags/co/1996/10/rx069-abs.html
url?: string;
// Specify your role on this project or in company, e.g. Team Lead, Speaker, Writer
roles?: string[];
// Specify the relevant company/entity affiliations e.g. 'greenpeace', 'corporationXYZ'
entity?: string;
// e.g. 'volunteering', 'presentation', 'talk', 'application', 'conference'
type?: string;
}
export interface Resume {
// List your basic profile information so employers can reach you.
basic: Basic;
// List your relevant work experiences.
work?: Work[];
// List your relevant Volunteer experiences.
volunteer?: Volunteer[];
// List your completed or in-progress education
education?: Education[];
// Specify any awards you have received throughout your professional career
awards?: Award[];
// Specify your publications through your career
publications?: Publication[];
// List out your professional skill-set
skills?: Skill[];
// List any other languages you speak
languages?: Language[];
// List any interest and hobbies
interests?: Interest[];
// List references you have received
references?: Reference[];
// Specify career projects
projects?: Project[];
}
export interface ResumeProps {
resume: Resume;
}
export interface BasicProps {
basic: Basic;
}
export interface WorkProps {
work: Work[];
}
export interface VolunteerProps {
volunteer: Volunteer[];
}
export interface EducationProps {
education: Education[];
}
export interface AwardsProps {
awards: Award[];
}
export interface PublicationsProps {
publications: Publication[];
}
export interface SkillsProps {
skills: Skill[];
}
export interface InterestsProps {
interests: Interest[];
}
export interface ReferencesProps {
references: Reference[];
}
export interface LanguagesProps {
languages: Language[];
}
export interface ProjectsProps {
projects: Project[];
}