schema-resume-validator 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/README.md +227 -0
- data/schemas/context.jsonld +501 -0
- data/schemas/meta-schema.json +435 -0
- data/schemas/schema-resume.xsd +366 -0
- data/schemas/schema.json +849 -0
- metadata +113 -0
|
@@ -0,0 +1,501 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": {
|
|
3
|
+
"@version": 1.1,
|
|
4
|
+
"@vocab": "https://schema-resume.org/",
|
|
5
|
+
"schema": "http://schema.org/",
|
|
6
|
+
"xsd": "http://www.w3.org/2001/XMLSchema#",
|
|
7
|
+
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
|
|
8
|
+
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
|
|
9
|
+
|
|
10
|
+
"Resume": {
|
|
11
|
+
"@id": "schema:Person",
|
|
12
|
+
"@type": "@id"
|
|
13
|
+
},
|
|
14
|
+
|
|
15
|
+
"basics": {
|
|
16
|
+
"@id": "schema:Person",
|
|
17
|
+
"@type": "@id"
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
"name": {
|
|
21
|
+
"@id": "schema:name",
|
|
22
|
+
"@type": "xsd:string"
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
"label": {
|
|
26
|
+
"@id": "schema:jobTitle",
|
|
27
|
+
"@type": "xsd:string"
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
"age": {
|
|
31
|
+
"@id": "schema:age",
|
|
32
|
+
"@type": "xsd:integer"
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
"dateOfBirth": {
|
|
36
|
+
"@id": "schema:birthDate",
|
|
37
|
+
"@type": "xsd:date"
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
"gender": {
|
|
41
|
+
"@id": "schema:gender",
|
|
42
|
+
"@type": "xsd:string"
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
"legalNote": {
|
|
46
|
+
"@id": "schema:termsOfService",
|
|
47
|
+
"@type": "@id"
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
"text": {
|
|
51
|
+
"@id": "schema:text",
|
|
52
|
+
"@type": "xsd:string"
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
"image": {
|
|
56
|
+
"@id": "schema:image",
|
|
57
|
+
"@type": "@id"
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
"email": {
|
|
61
|
+
"@id": "schema:email",
|
|
62
|
+
"@type": "xsd:string"
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
"phone": {
|
|
66
|
+
"@id": "schema:telephone",
|
|
67
|
+
"@type": "xsd:string"
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
"url": {
|
|
71
|
+
"@id": "schema:url",
|
|
72
|
+
"@type": "@id"
|
|
73
|
+
},
|
|
74
|
+
|
|
75
|
+
"summary": {
|
|
76
|
+
"@id": "schema:description",
|
|
77
|
+
"@type": "xsd:string"
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
"keyAchievements": {
|
|
81
|
+
"@id": "schema:award",
|
|
82
|
+
"@type": "xsd:string",
|
|
83
|
+
"@container": "@list"
|
|
84
|
+
},
|
|
85
|
+
|
|
86
|
+
"coreCompetencies": {
|
|
87
|
+
"@id": "schema:knowsAbout",
|
|
88
|
+
"@type": "xsd:string",
|
|
89
|
+
"@container": "@list"
|
|
90
|
+
},
|
|
91
|
+
|
|
92
|
+
"location": {
|
|
93
|
+
"@id": "schema:address",
|
|
94
|
+
"@type": "@id"
|
|
95
|
+
},
|
|
96
|
+
|
|
97
|
+
"streetAddress": {
|
|
98
|
+
"@id": "schema:streetAddress",
|
|
99
|
+
"@type": "xsd:string"
|
|
100
|
+
},
|
|
101
|
+
|
|
102
|
+
"address": {
|
|
103
|
+
"@id": "schema:streetAddress",
|
|
104
|
+
"@type": "xsd:string"
|
|
105
|
+
},
|
|
106
|
+
|
|
107
|
+
"postalCode": {
|
|
108
|
+
"@id": "schema:postalCode",
|
|
109
|
+
"@type": "xsd:string"
|
|
110
|
+
},
|
|
111
|
+
|
|
112
|
+
"city": {
|
|
113
|
+
"@id": "schema:addressLocality",
|
|
114
|
+
"@type": "xsd:string"
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
"countryCode": {
|
|
118
|
+
"@id": "schema:addressCountry",
|
|
119
|
+
"@type": "xsd:string"
|
|
120
|
+
},
|
|
121
|
+
|
|
122
|
+
"region": {
|
|
123
|
+
"@id": "schema:addressRegion",
|
|
124
|
+
"@type": "xsd:string"
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
"profiles": {
|
|
128
|
+
"@id": "schema:sameAs",
|
|
129
|
+
"@type": "@id",
|
|
130
|
+
"@container": "@list"
|
|
131
|
+
},
|
|
132
|
+
|
|
133
|
+
"nationalities": {
|
|
134
|
+
"@id": "schema:nationality",
|
|
135
|
+
"@type": "@id",
|
|
136
|
+
"@container": "@list"
|
|
137
|
+
},
|
|
138
|
+
|
|
139
|
+
"workAuthorization": {
|
|
140
|
+
"@id": "schema:hasCredential",
|
|
141
|
+
"@type": "@id",
|
|
142
|
+
"@container": "@list"
|
|
143
|
+
},
|
|
144
|
+
|
|
145
|
+
"status": {
|
|
146
|
+
"@id": "schema:credentialCategory",
|
|
147
|
+
"@type": "xsd:string"
|
|
148
|
+
},
|
|
149
|
+
|
|
150
|
+
"rightToWork": {
|
|
151
|
+
"@id": "schema:validIn",
|
|
152
|
+
"@type": "xsd:boolean"
|
|
153
|
+
},
|
|
154
|
+
|
|
155
|
+
"visaType": {
|
|
156
|
+
"@id": "schema:name",
|
|
157
|
+
"@type": "xsd:string"
|
|
158
|
+
},
|
|
159
|
+
|
|
160
|
+
"validFrom": {
|
|
161
|
+
"@id": "schema:validFrom",
|
|
162
|
+
"@type": "xsd:date"
|
|
163
|
+
},
|
|
164
|
+
|
|
165
|
+
"validTo": {
|
|
166
|
+
"@id": "schema:validUntil",
|
|
167
|
+
"@type": "xsd:date"
|
|
168
|
+
},
|
|
169
|
+
|
|
170
|
+
"notes": {
|
|
171
|
+
"@id": "schema:description",
|
|
172
|
+
"@type": "xsd:string"
|
|
173
|
+
},
|
|
174
|
+
|
|
175
|
+
"born": {
|
|
176
|
+
"@id": "schema:birthPlace",
|
|
177
|
+
"@type": "xsd:boolean"
|
|
178
|
+
},
|
|
179
|
+
|
|
180
|
+
"network": {
|
|
181
|
+
"@id": "schema:name",
|
|
182
|
+
"@type": "xsd:string"
|
|
183
|
+
},
|
|
184
|
+
|
|
185
|
+
"username": {
|
|
186
|
+
"@id": "schema:identifier",
|
|
187
|
+
"@type": "xsd:string"
|
|
188
|
+
},
|
|
189
|
+
|
|
190
|
+
"work": {
|
|
191
|
+
"@id": "schema:worksFor",
|
|
192
|
+
"@type": "@id",
|
|
193
|
+
"@container": "@list"
|
|
194
|
+
},
|
|
195
|
+
|
|
196
|
+
"position": {
|
|
197
|
+
"@id": "schema:jobTitle",
|
|
198
|
+
"@type": "xsd:string"
|
|
199
|
+
},
|
|
200
|
+
|
|
201
|
+
"workType": {
|
|
202
|
+
"@id": "schema:employmentType",
|
|
203
|
+
"@type": "xsd:string"
|
|
204
|
+
},
|
|
205
|
+
|
|
206
|
+
"industry": {
|
|
207
|
+
"@id": "schema:industry",
|
|
208
|
+
"@type": "xsd:string"
|
|
209
|
+
},
|
|
210
|
+
|
|
211
|
+
"workLocation": {
|
|
212
|
+
"@id": "schema:workLocation",
|
|
213
|
+
"@type": "xsd:string"
|
|
214
|
+
},
|
|
215
|
+
|
|
216
|
+
"contactDetails": {
|
|
217
|
+
"@id": "schema:contactPoint",
|
|
218
|
+
"@type": "@id"
|
|
219
|
+
},
|
|
220
|
+
|
|
221
|
+
"fax": {
|
|
222
|
+
"@id": "schema:faxNumber",
|
|
223
|
+
"@type": "xsd:string"
|
|
224
|
+
},
|
|
225
|
+
|
|
226
|
+
"startDate": {
|
|
227
|
+
"@id": "schema:startDate",
|
|
228
|
+
"@type": "xsd:date"
|
|
229
|
+
},
|
|
230
|
+
|
|
231
|
+
"endDate": {
|
|
232
|
+
"@id": "schema:endDate",
|
|
233
|
+
"@type": "xsd:date"
|
|
234
|
+
},
|
|
235
|
+
|
|
236
|
+
"highlights": {
|
|
237
|
+
"@id": "schema:description",
|
|
238
|
+
"@type": "xsd:string",
|
|
239
|
+
"@container": "@list"
|
|
240
|
+
},
|
|
241
|
+
|
|
242
|
+
"volunteer": {
|
|
243
|
+
"@id": "schema:performerIn",
|
|
244
|
+
"@type": "@id",
|
|
245
|
+
"@container": "@list"
|
|
246
|
+
},
|
|
247
|
+
|
|
248
|
+
"organization": {
|
|
249
|
+
"@id": "schema:name",
|
|
250
|
+
"@type": "xsd:string"
|
|
251
|
+
},
|
|
252
|
+
|
|
253
|
+
"education": {
|
|
254
|
+
"@id": "schema:alumniOf",
|
|
255
|
+
"@type": "@id",
|
|
256
|
+
"@container": "@list"
|
|
257
|
+
},
|
|
258
|
+
|
|
259
|
+
"institution": {
|
|
260
|
+
"@id": "schema:name",
|
|
261
|
+
"@type": "xsd:string"
|
|
262
|
+
},
|
|
263
|
+
|
|
264
|
+
"school": {
|
|
265
|
+
"@id": "schema:name",
|
|
266
|
+
"@type": "xsd:string"
|
|
267
|
+
},
|
|
268
|
+
|
|
269
|
+
"area": {
|
|
270
|
+
"@id": "schema:educationalCredentialAwarded",
|
|
271
|
+
"@type": "xsd:string"
|
|
272
|
+
},
|
|
273
|
+
|
|
274
|
+
"studyType": {
|
|
275
|
+
"@id": "schema:educationalLevel",
|
|
276
|
+
"@type": "xsd:string"
|
|
277
|
+
},
|
|
278
|
+
|
|
279
|
+
"degree": {
|
|
280
|
+
"@id": "schema:educationalLevel",
|
|
281
|
+
"@type": "xsd:string"
|
|
282
|
+
},
|
|
283
|
+
|
|
284
|
+
"score": {
|
|
285
|
+
"@id": "schema:grade",
|
|
286
|
+
"@type": "xsd:string"
|
|
287
|
+
},
|
|
288
|
+
|
|
289
|
+
"gpa": {
|
|
290
|
+
"@id": "schema:grade",
|
|
291
|
+
"@type": "xsd:string"
|
|
292
|
+
},
|
|
293
|
+
|
|
294
|
+
"courses": {
|
|
295
|
+
"@id": "schema:courseCode",
|
|
296
|
+
"@type": "xsd:string",
|
|
297
|
+
"@container": "@list"
|
|
298
|
+
},
|
|
299
|
+
|
|
300
|
+
"awards": {
|
|
301
|
+
"@id": "schema:award",
|
|
302
|
+
"@type": "@id",
|
|
303
|
+
"@container": "@list"
|
|
304
|
+
},
|
|
305
|
+
|
|
306
|
+
"title": {
|
|
307
|
+
"@id": "schema:name",
|
|
308
|
+
"@type": "xsd:string"
|
|
309
|
+
},
|
|
310
|
+
|
|
311
|
+
"date": {
|
|
312
|
+
"@id": "schema:datePublished",
|
|
313
|
+
"@type": "xsd:date"
|
|
314
|
+
},
|
|
315
|
+
|
|
316
|
+
"awarder": {
|
|
317
|
+
"@id": "schema:sourceOrganization",
|
|
318
|
+
"@type": "xsd:string"
|
|
319
|
+
},
|
|
320
|
+
|
|
321
|
+
"certificates": {
|
|
322
|
+
"@id": "schema:hasCredential",
|
|
323
|
+
"@type": "@id",
|
|
324
|
+
"@container": "@list"
|
|
325
|
+
},
|
|
326
|
+
|
|
327
|
+
"issuer": {
|
|
328
|
+
"@id": "schema:issuedBy",
|
|
329
|
+
"@type": "xsd:string"
|
|
330
|
+
},
|
|
331
|
+
|
|
332
|
+
"publications": {
|
|
333
|
+
"@id": "schema:publishedBy",
|
|
334
|
+
"@type": "@id",
|
|
335
|
+
"@container": "@list"
|
|
336
|
+
},
|
|
337
|
+
|
|
338
|
+
"publisher": {
|
|
339
|
+
"@id": "schema:publisher",
|
|
340
|
+
"@type": "xsd:string"
|
|
341
|
+
},
|
|
342
|
+
|
|
343
|
+
"releaseDate": {
|
|
344
|
+
"@id": "schema:datePublished",
|
|
345
|
+
"@type": "xsd:date"
|
|
346
|
+
},
|
|
347
|
+
|
|
348
|
+
"skills": {
|
|
349
|
+
"@id": "schema:knowsAbout",
|
|
350
|
+
"@type": "@id",
|
|
351
|
+
"@container": "@list"
|
|
352
|
+
},
|
|
353
|
+
|
|
354
|
+
"tools": {
|
|
355
|
+
"@id": "schema:knowsAbout",
|
|
356
|
+
"@type": "@id",
|
|
357
|
+
"@container": "@list"
|
|
358
|
+
},
|
|
359
|
+
|
|
360
|
+
"group": {
|
|
361
|
+
"@id": "schema:category",
|
|
362
|
+
"@type": "xsd:string"
|
|
363
|
+
},
|
|
364
|
+
|
|
365
|
+
"category": {
|
|
366
|
+
"@id": "schema:category",
|
|
367
|
+
"@type": "xsd:string"
|
|
368
|
+
},
|
|
369
|
+
|
|
370
|
+
"yearsOfExperience": {
|
|
371
|
+
"@id": "schema:yearsInOperation",
|
|
372
|
+
"@type": "xsd:decimal"
|
|
373
|
+
},
|
|
374
|
+
|
|
375
|
+
"comment": {
|
|
376
|
+
"@id": "schema:comment",
|
|
377
|
+
"@type": "xsd:string"
|
|
378
|
+
},
|
|
379
|
+
|
|
380
|
+
"level": {
|
|
381
|
+
"@id": "schema:proficiencyLevel",
|
|
382
|
+
"@type": "xsd:string"
|
|
383
|
+
},
|
|
384
|
+
|
|
385
|
+
"country": {
|
|
386
|
+
"@id": "schema:addressCountry",
|
|
387
|
+
"@type": "xsd:string"
|
|
388
|
+
},
|
|
389
|
+
|
|
390
|
+
"keywords": {
|
|
391
|
+
"@id": "schema:keywords",
|
|
392
|
+
"@type": "xsd:string",
|
|
393
|
+
"@container": "@list"
|
|
394
|
+
},
|
|
395
|
+
|
|
396
|
+
"languages": {
|
|
397
|
+
"@id": "schema:knowsLanguage",
|
|
398
|
+
"@type": "@id",
|
|
399
|
+
"@container": "@list"
|
|
400
|
+
},
|
|
401
|
+
|
|
402
|
+
"language": {
|
|
403
|
+
"@id": "schema:name",
|
|
404
|
+
"@type": "xsd:string"
|
|
405
|
+
},
|
|
406
|
+
|
|
407
|
+
"fluency": {
|
|
408
|
+
"@id": "schema:proficiencyLevel",
|
|
409
|
+
"@type": "xsd:string"
|
|
410
|
+
},
|
|
411
|
+
|
|
412
|
+
"interests": {
|
|
413
|
+
"@id": "schema:hasOccupation",
|
|
414
|
+
"@type": "@id",
|
|
415
|
+
"@container": "@list"
|
|
416
|
+
},
|
|
417
|
+
|
|
418
|
+
"references": {
|
|
419
|
+
"@id": "schema:review",
|
|
420
|
+
"@type": "@id",
|
|
421
|
+
"@container": "@list"
|
|
422
|
+
},
|
|
423
|
+
|
|
424
|
+
"reference": {
|
|
425
|
+
"@id": "schema:reviewBody",
|
|
426
|
+
"@type": "xsd:string"
|
|
427
|
+
},
|
|
428
|
+
|
|
429
|
+
"projects": {
|
|
430
|
+
"@id": "schema:project",
|
|
431
|
+
"@type": "@id",
|
|
432
|
+
"@container": "@list"
|
|
433
|
+
},
|
|
434
|
+
|
|
435
|
+
"description": {
|
|
436
|
+
"@id": "schema:description",
|
|
437
|
+
"@type": "xsd:string"
|
|
438
|
+
},
|
|
439
|
+
|
|
440
|
+
"roles": {
|
|
441
|
+
"@id": "schema:roleName",
|
|
442
|
+
"@type": "xsd:string",
|
|
443
|
+
"@container": "@list"
|
|
444
|
+
},
|
|
445
|
+
|
|
446
|
+
"entity": {
|
|
447
|
+
"@id": "schema:affiliation",
|
|
448
|
+
"@type": "xsd:string"
|
|
449
|
+
},
|
|
450
|
+
|
|
451
|
+
"type": {
|
|
452
|
+
"@id": "rdf:type",
|
|
453
|
+
"@type": "@id"
|
|
454
|
+
},
|
|
455
|
+
|
|
456
|
+
"@type": {
|
|
457
|
+
"@id": "rdf:type",
|
|
458
|
+
"@type": "@id"
|
|
459
|
+
},
|
|
460
|
+
|
|
461
|
+
"additionalType": {
|
|
462
|
+
"@id": "schema:additionalType",
|
|
463
|
+
"@type": "@id"
|
|
464
|
+
},
|
|
465
|
+
|
|
466
|
+
"meta": {
|
|
467
|
+
"@id": "schema:about",
|
|
468
|
+
"@type": "@id"
|
|
469
|
+
},
|
|
470
|
+
|
|
471
|
+
"canonical": {
|
|
472
|
+
"@id": "schema:url",
|
|
473
|
+
"@type": "@id"
|
|
474
|
+
},
|
|
475
|
+
|
|
476
|
+
"version": {
|
|
477
|
+
"@id": "schema:version",
|
|
478
|
+
"@type": "xsd:string"
|
|
479
|
+
},
|
|
480
|
+
|
|
481
|
+
"lastModified": {
|
|
482
|
+
"@id": "schema:dateModified",
|
|
483
|
+
"@type": "xsd:dateTime"
|
|
484
|
+
},
|
|
485
|
+
|
|
486
|
+
"dateCreated": {
|
|
487
|
+
"@id": "schema:dateCreated",
|
|
488
|
+
"@type": "xsd:dateTime"
|
|
489
|
+
},
|
|
490
|
+
|
|
491
|
+
"dateModified": {
|
|
492
|
+
"@id": "schema:dateModified",
|
|
493
|
+
"@type": "xsd:dateTime"
|
|
494
|
+
},
|
|
495
|
+
|
|
496
|
+
"datePublished": {
|
|
497
|
+
"@id": "schema:datePublished",
|
|
498
|
+
"@type": "xsd:dateTime"
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
}
|