-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
jsonresume.schema.latest.ts
241 lines (229 loc) · 5.33 KB
/
jsonresume.schema.latest.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
/**
* @file Represents the current version(s) of the schema
* - Currently v1.0.0
* @see https://github.com/jsonresume/resume-schema/blob/v1.0.0/schema.json
* - Permalink of above: https://github.com/jsonresume/resume-schema/blob/8a5b3982f8e5b9f8840398e162a6e0c418d023da/schema.json
*/
// All of these imports are because the spec is the same for the sub-section in both stable and latest (this doc)
import { Iso8601, Award, Location, Profile, Interest, Language, Reference, Skill, ResumeSchemaLegacy } from './jsonresume.schema.legacy.js';
// Re-export
export { Iso8601, Award, Location, Profile, Interest, Language, Reference, Skill };
export interface Certificate {
/**
* e.g. Certified Kubernetes Administrator
*/
name: string;
/**
* e.g. 1989-06-12
*/
date?: Iso8601;
/**
* e.g. http://example.com
*/
url?: string;
/**
* e.g. CNCF
*/
issuer?: string;
}
export interface Basics {
/**
* e.g. [email protected]
*/
email?: string;
/**
* URL (as per RFC 3986) to a image in JPEG or PNG format
*/
image?: string;
/**
* e.g. Web Developer
*/
label?: string;
location?: Location;
name?: string;
/**
* Phone numbers are stored as strings so use any format you like, e.g. 712-117-2923
*/
phone?: string;
/**
* Specify any number of social networks that you participate in
*/
profiles?: Profile[];
/**
* Write a short 2-3 sentence biography about yourself
*/
summary?: string;
/**
* URL (as per RFC 3986) to your website, e.g. personal homepage
*/
url?: string;
}
export interface Education {
/**
* e.g. Arts
*/
area?: string;
/**
* List notable courses/subjects
*/
courses?: string[];
endDate?: Iso8601;
/**
* grade point average, e.g. 3.67/4.0
*/
score?: string;
/**
* e.g. Massachusetts Institute of Technology
*/
institution?: string;
startDate?: Iso8601;
/**
* e.g. Bachelor
*/
studyType?: string;
/**
* e.g. https://www.mit.edu/
*/
url?: string;
}
/**
* The schema version and any other tooling configuration lives here
*/
export interface Meta {
/**
* URL (as per RFC 3986) to latest version of this document
*/
canonical?: string;
/**
* Using ISO 8601 with YYYY-MM-DDThh:mm:ss
*/
lastModified?: string;
/**
* A version field which follows semver - e.g. v1.0.0
*/
version?: string;
}
export interface Project {
/**
* Short summary of project. e.g. Collated works of 2017.
*/
description?: string;
endDate?: Iso8601;
/**
* Specify the relevant company/entity affiliations e.g. 'greenpeace', 'corporationXYZ'
*/
entity?: string;
/**
* Specify multiple features
*/
highlights?: string[];
/**
* Specify special elements involved
*/
keywords?: string[];
/**
* e.g. The World Wide Web
*/
name?: string;
/**
* Specify your role on this project or in company
*/
roles?: string[];
startDate?: Iso8601;
/**
* e.g. 'volunteering', 'presentation', 'talk', 'application', 'conference'
*/
type?: string;
/**
* e.g. http://www.computer.org/csdl/mags/co/1996/10/rx069-abs.html
*/
url?: string;
}
export type Publication = Omit<ResumeSchemaLegacy['publications'][0], 'website'> & {
/**
* e.g. http://www.computer.org.example.com/csdl/mags/co/1996/10/rx069-abs.html
*/
url?: string;
};
export type Volunteer = Omit<ResumeSchemaLegacy['volunteer'][0], 'website'> & {
/**
* e.g. https://www.eff.org/
*/
url?: string;
};
export interface Work {
/**
* e.g. Social Media Company
*/
description?: string;
endDate?: Iso8601;
/**
* Specify multiple accomplishments
*/
highlights?: string[];
/**
* e.g. San Francisco, CA
*/
location?: string;
/**
* e.g. Twitter
*/
name?: string;
/**
* e.g. Software Engineer
*/
position?: string;
startDate?: Iso8601;
/**
* Give an overview of your responsibilities at the company
*/
summary?: string;
/**
* e.g. https://twitter.com
*/
url?: string;
}
export interface ResumeSchemaStable {
/**
* link to the version of the schema that can validate the resume
*/
$schema?: string;
/**
* Specify any awards you have received throughout your professional career
*/
awards?: Award[];
basics?: Basics;
certificates: Certificate[];
education?: Education[];
interests?: Interest[];
/**
* List any other languages you speak
*/
languages?: Language[];
/**
* The schema version and any other tooling configuration lives here
*/
meta?: Meta;
/**
* Specify career projects
*/
projects?: Project[];
/**
* Specify your publications through your career
*/
publications?: Publication[];
/**
* List references you have received
*/
references?: Reference[];
/**
* List out your professional skill-set
*/
skills?: Skill[];
volunteer?: Volunteer[];
work?: Work[];
}
/**
* Currently even - nothing beyond v1
*/
export interface ResumeSchemaBeyondSpec extends ResumeSchemaStable {}