forked from jsonresume/resume-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
287 lines (279 loc) · 6.51 KB
/
schema.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
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
{
"title": "Resume Schema",
"type": "object",
"properties": {
"bio": {
"type": "object",
"properties": {
"firstName": {
"type": "string"
},
"lastName": {
"type": "string"
},
"email": {
"type": "object",
"properties": {
"work": {
"type": "string",
"description": "e.g. [email protected]"
},
"personal": {
"type": "string",
"description": "[email protected]"
}
}
},
"phone": {
"type": "object",
"description": "Phone numbers are stored as strings so use any format you like",
"properties": {
"work": {
"type": "string",
"description": "e.g. 732-757-2923"
},
"personal": {
"type": "string",
"description": "e.g. 712-117-2923"
}
}
},
"label": {
"type": "string",
"description": "e.g. Web Developer"
},
"summary": {
"type": "string",
"description": "Write a short 2-3 sentence biography about yourself"
},
"location": {
"type": "object",
"properties": {
"city": {
"type": "string"
},
"countryCode": {
"description": "e.g. US, AU, IN",
"type": "string"
},
"region": {
"type": "string",
"description": "If you specify a region, you don't need a state e.g. Brittany"
},
"state": {
"type": "string",
"description":"If you specify a state, you don't need a region e.g. Texas"
}
}
},
"websites": {
"type": "object",
"description": "The value you use as your key, will generally become the label",
"properties": {
"blog": {
"type": "string",
"description": "e.g. http://blog.joebloggs.com"
}
}
},
"profiles": {
"type": "object",
"description": "Specify any number of social networks that you participate in",
"properties": {
"twitter": {
"type": "string",
"description": "e.g. neutralthoughts"
},
"github": {
"type": "string",
"description": "e.g. thomasdavis"
}
}
}
}
},
"work": {
"type": "array",
"items": {
"type": "object",
"properties": {
"company": {
"type": "string",
"description": "e.g. Facebook"
},
"position": {
"type": "string",
"description": "e.g. Software Engineer"
},
"website": {
"type": "string",
"description": "e.g. http://facebook.com"
},
"startDate": {
"type": "string",
"description": "resume.json uses the ISO 8601 date standard e.g. 2014-06-29"
},
"endDate": {
"type": "string",
"description": "e.g. 2012-06-29"
},
"summary": {
"type": "string",
"description": "Give an overview of your responsibilities at the company"
},
"highlights": {
"type": "array",
"description": "Specify multiple accomplishments",
"items": {
"description": "e.g. Increased profits by 20% from 2011-2012 through viral advertising",
"type": "string"
}
}
}
}
},
"education": {
"type": "array",
"items": {
"type": "object",
"properties": {
"institution": {
"type": "string",
"description": "e.g. Massachusetts Institute of Technology"
},
"area": {
"type": "string",
"description": "e.g. Arts"
},
"studyType": {
"type": "string",
"description": "e.g. Bachelor"
},
"startDate": {
"type": "string",
"description": "e.g. 2014-06-29"
},
"endDate": {
"type": "string",
"description": "e.g. 2012-06-29"
},
"courses": {
"type": "array",
"description": "List notable courses/subjects",
"items": {
"type": "string",
"description": "e.g. H1302 - Introduction to American history"
}
}
}
}
},
"awards": {
"type": "array",
"description": "Specify any awards you have received throughout your professional career",
"items": {
"type": "object",
"properties": {
"title": {
"type": "string",
"description": "e.g. One of the 100 greatest minds of the century"
},
"awardDate": {
"type": "string",
"description": "e.g. 1989-06-12"
},
"awarder": {
"type": "string",
"description": "e.g. Time Magazine"
}
}
}
},
"publications": {
"type": "array",
"description": "Specify your publications through your career",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "e.g. The World Wide Web"
},
"publisher": {
"type": "string",
"description": "e.g. IEEE, Computer Magazine"
},
"releaseDate": {
"type": "string",
"description": "e.g. 1990-08-01"
},
"website": {
"type": "string",
"description": "e.g. http://www.computer.org/csdl/mags/co/1996/10/rx069-abs.html"
}
}
}
},
"skills": {
"type": "array",
"description": "List out your professional skill-set",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "e.g. Web Development"
},
"level": {
"type": "string",
"description": "e.g. Master"
},
"keywords": {
"type": "array",
"description": "List some keywords pertaining to this skill",
"items": {
"type": "string",
"description": "e.g. HTML"
}
}
}
}
},
"hobbies": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "e.g. Philosophy"
},
"keywords": {
"type": "array",
"items": {
"type": "string",
"description": "e.g. Friedrich Nietzsche"
}
}
}
}
},
"references": {
"type": "array",
"description": "List references you have received",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "e.g. Timothy Cook"
},
"reference": {
"type": "string",
"description": "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."
}
}
}
}
}
}