Skip to content

Commit dee007c

Browse files
committed
Added volunteer section
1 parent 9f74cbc commit dee007c

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

schema.json

+47
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,53 @@
133133

134134
}
135135
},
136+
"volunteer": {
137+
"type": "array",
138+
"additionalItems": false,
139+
"items": {
140+
"type": "object",
141+
"additionalProperties": false,
142+
"properties": {
143+
"organization": {
144+
"type": "string",
145+
"description": "e.g. Facebook"
146+
},
147+
"position": {
148+
"type": "string",
149+
"description": "e.g. Software Engineer"
150+
},
151+
"website": {
152+
"type": "string",
153+
"description": "e.g. http://facebook.com",
154+
"format": "uri"
155+
},
156+
"startDate": {
157+
"type": "string",
158+
"description": "resume.json uses the ISO 8601 date standard e.g. 2014-06-29",
159+
"format": "date"
160+
},
161+
"endDate": {
162+
"type": "string",
163+
"description": "e.g. 2012-06-29",
164+
"format": "date"
165+
},
166+
"summary": {
167+
"type": "string",
168+
"description": "Give an overview of your responsibilities at the company"
169+
},
170+
"highlights": {
171+
"type": "array",
172+
"description": "Specify multiple accomplishments",
173+
"additionalItems": false,
174+
"items": {
175+
"type": "string",
176+
"description": "e.g. Increased profits by 20% from 2011-2012 through viral advertising"
177+
}
178+
}
179+
}
180+
181+
}
182+
},
136183
"education": {
137184
"type": "array",
138185
"additionalItems": false,

0 commit comments

Comments
 (0)