-
Notifications
You must be signed in to change notification settings - Fork 86
/
schema.html
186 lines (184 loc) · 5.37 KB
/
schema.html
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
---
layout: default
title: Schema
---
<header id="header">
<div class="container">
<div class="row">
<div class="col-sm-12">
<h1>Schema</h1>
</div>
</div>
</div>
</header>
<div id="schema" class="container">
<div class="row">
<div class="col-sm-3">
<h4>What is it?</h4>
<p>
JSON Resume is a community driven open source initiative to create
JSON-based standard for resumes.
</p>
<h4>Why JSON?</h4>
<p>
We believe that the strengths of the JSON format makes it a good fit
for resumes. It's lightweight, easy to use and it's perfect to build
tools for!
</p>
<p>
We also feel that the <a href="https://json-schema.org/">JSON Schema</a>
is mature enough for writing usable semantics.
</p>
<h4>Open Source</h4>
<p>
The schema is <a href="https://github.com/jsonresume/resume-schema">open source</a>
and community-driven. We release everything we do under the MIT license.
</p>
</div>
<div class="col-sm-9 col-md-5">
<div class="header">
<div class="pull-right version">version 1.0.0</div>
resume.json
</div>
<pre class="schema">
{
"basics": {
"name": <span>"John Doe",</span>
"label": <span>"Programmer",</span>
"image": <span>"",</span>
"email": <span>"[email protected]",</span>
"phone": <span>"(912) 555-4321",</span>
"url": <span>"https://johndoe.com",</span>
"summary": <span>"A summary of John Doe…",</span>
"location": {
"address": <span>"2712 Broadway St",</span>
"postalCode": <span>"CA 94115",</span>
"city": <span>"San Francisco",</span>
"countryCode": <span>"US",</span>
"region": <span>"California"</span>
},
"profiles": [{
"network": <span>"Twitter",</span>
"username": <span>"john",</span>
"url": <span>"https://twitter.com/john"</span>
}]
},
"work": [{
"name": <span>"Company",</span>
"position": <span>"President",</span>
"url": <span>"https://company.com",</span>
"startDate": <span>"2013-01-01",</span>
"endDate": <span>"2014-01-01",</span>
"summary": <span>"Description…",</span>
"highlights": [
<span>"Started the company"</span>
]
}],
"volunteer": [{
"organization": <span>"Organization",</span>
"position": <span>"Volunteer",</span>
"url": <span>"https://organization.com/",</span>
"startDate": <span>"2012-01-01",</span>
"endDate": <span>"2013-01-01",</span>
"summary": <span>"Description…",</span>
"highlights": [
<span>"Awarded 'Volunteer of the Month'"</span>
]
}],
"education": [{
"institution": <span>"University",</span>
"url": <span>"https://institution.com/",</span>
"area": <span>"Software Development",</span>
"studyType": <span>"Bachelor",</span>
"startDate": <span>"2011-01-01",</span>
"endDate": <span>"2013-01-01",</span>
"score": <span>"4.0",</span>
"courses": [
<span>"DB1101 - Basic SQL"</span>
]
}],
"awards": [{
"title": <span>"Award",</span>
"date": <span>"2014-11-01",</span>
"awarder": <span>"Company",</span>
"summary": <span>"There is no spoon."</span>
}],
"certificates": [{
"name": <span>"Certificate",</span>
"date": <span>"2021-11-07",</span>
"issuer": <span>"Company",</span>
"url": <span>"https://certificate.com"</span>
}],
"publications": [{
"name": <span>"Publication",</span>
"publisher": <span>"Company",</span>
"releaseDate": <span>"2014-10-01",</span>
"url": <span>"https://publication.com",</span>
"summary": <span>"Description…"</span>
}],
"skills": [{
"name": <span>"Web Development",</span>
"level": <span>"Master",</span>
"keywords": [
<span>"HTML",</span>
<span>"CSS",</span>
<span>"JavaScript"</span>
]
}],
"languages": [{
"language": <span>"English",</span>
"fluency": <span>"Native speaker"</span>
}],
"interests": [{
"name": <span>"Wildlife",</span>
"keywords": [
<span>"Ferrets",</span>
<span>"Unicorns"</span>
]
}],
"references": [{
"name": <span>"Jane Doe",</span>
"reference": <span>"Reference…"</span>
}],
"projects": [{
"name": <span>"Project",</span>
"description": <span>"Description…",</span>
"highlights": [
<span>"Won award at AIHacks 2016"</span>
],
"keywords": [
<span>"HTML"</span>
],
"startDate": <span>"2019-01-01",</span>
"endDate": <span>"2021-01-01",</span>
"url": <span>"https://project.com/",</span>
"roles": [
<span>"Team Lead"</span>
],
"entity": <span>"Entity",</span>
"type": <span>"application"</span>
}]
}
</pre>
</div>
<div class="col-sm-4 hidden-sm">
<h4>Integrations</h4>
<p>
Export your profile into the JSON Resume format from the services
below:
</p>
{% for integration in site.data.integrations %}
<div class="row integration">
<div class="col-xs-2">
<img src="{{integration.image}}" alt="{{integration.name}} Logo" width="35" height="35">
</div>
<div class="col-xs-10">
<p><strong>{{integration.name}}</strong></p>
<p><a href="{{integration.url}}">{{integration.display-url}}</a></p>
<p>{{integration.description}}</p>
</div>
</div>
{% endfor %}
</div>
</div>
</div>