-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.yml
196 lines (189 loc) · 5.38 KB
/
schema.yml
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
type: object
required: [profile]
additionalProperties: false
properties:
profile:
type: object
required: [name]
description: General profile information
additionalProperties: false
properties:
name:
type: string
description: Your full name
label:
type: string
description: One or more terms that best describe you, for example your profession
email:
type: string
description: Your e-mail address
phone:
type: string
description: Your phone number
website:
type: string
description: Your personal website
location:
type: string
description: Where are you situated?
summary:
type: string
description: A brief description of yourself, for example your interests and motivation
social:
type: array
description: Links to social networks
items:
type: object
required: [network, url]
additionalProperties: false
properties:
network:
type: string
description: Name of the social network
url:
type: string
description: URL to your profile
work:
type: array
description: Your employment history
items:
type: object
required: [company]
additionalProperties: false
properties:
company:
type: string
description: The company name
url:
type: string
description: URL to the company homepage
position:
type: string
description: Your job title
from:
type: [number, string]
description: The date when you entered employment
until:
type: [number, string]
description: The date when you stopped working (leave empty if you're still employed)
summary:
type: string
description: A short description of the company and/or your work there
highlights:
type: array
description: Things that you did during your employment that are particularly noteworthy
items:
type: object
required: [summary]
properties:
summary:
type: string
description: Summary of the highlight
keywords:
type: array
description: Keywords, e.g. technologies and tools used
items:
type: string
education:
type: array
description: Your education
items:
type: object
required: [institution]
additionalProperties: false
properties:
institution:
type: string
description: Name of the education institution
url:
type: string
description: URL of the institution
area:
type: string
description: The area of studies that you persued for example "Computer Science"
degree:
type: string
description: The degree that you attained
from:
type: [number, string]
description: The date when you started the program
until:
type: [number, string]
description: The date when you stopped the program (leave empty if you're still enrolled)
awards:
type: array
description: Awards/achievements that you attained during your career
items:
type: object
required: [name]
additionalProperties: false
properties:
name:
type: string
description: Name of the award
date:
type: [number, string]
description: Date when you received the award
awarder:
type: string
description: Institution that granted or sponsored the award
url:
type: string
description: URL of the awarder or a record of your achievement
summary:
type: string
description: A brief description of the award
publications:
type: array
description: Scientific papers that you (co-)authored
items:
type: object
required: [title]
additionalProperties: false
properties:
title:
type: string
description: Title of the paper
date:
type: [number, string]
description: Date when the paper was published
url:
type: string
description: URL to the published paper
summary:
type: string
description: A brief synopsis of the paper
skills:
type: array
description: Skills that you want to feature
foo: bar
items:
type: object
required: [name]
additionalProperties: false
properties:
name:
type: string
description: Name of the skill
level:
type: string
description: Your level of expertise in that skill
keywords:
type: array
description: A couple of keywords that are relevant to the skill
items:
type: string
languages:
type: array
description: Languages that you can speak
items:
type: object
required: [name]
additionalProperties: false
properties:
name:
type: string
description: Name of the language
level:
type: string
description: Your level of proficiency in that language