@velocitycareerlabs/sample-libapp 1.25.0-dev-build.1c5e2a209

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.
Files changed (27) hide show
  1. package/LICENSE +202 -0
  2. package/contexts/credential-extensions-2022.jsonld.json +36 -0
  3. package/contexts/layer1-v1.0.jsonld.json +414 -0
  4. package/contexts/layer1-v1.1.jsonld.json +451 -0
  5. package/display-descriptors/education-degree-graduation-v1.1.descriptor.json +263 -0
  6. package/display-descriptors/email-v1.0.descriptor.json +19 -0
  7. package/display-descriptors/employment-current-v1.1.descriptor.json +189 -0
  8. package/display-descriptors/en/education-degree-graduation-v1.1.descriptor.json +263 -0
  9. package/display-descriptors/en/email-v1.0.descriptor.json +19 -0
  10. package/display-descriptors/en/employment-current-v1.1.descriptor.json +189 -0
  11. package/display-descriptors/en/open-badge-credential.descriptor.json +259 -0
  12. package/display-descriptors/open-badge-credential.descriptor.json +259 -0
  13. package/docker/compose.yml +9 -0
  14. package/docker/nginx.conf +9 -0
  15. package/form-schemas/EducationDegreeGraduationV1.1.form-schema.json +126 -0
  16. package/form-schemas/EmailV1.0.form-schema.json +5 -0
  17. package/form-schemas/EmploymentCurrentV1.1.form-schema.json +96 -0
  18. package/form-schemas/OpenBadgeCredential.form-schema.json +113 -0
  19. package/form-schemas/en/EducationDegreeGraduationV1.1.form-schema.json +126 -0
  20. package/form-schemas/en/EmailV1.0.form-schema.json +5 -0
  21. package/form-schemas/en/EmploymentCurrentV1.1.form-schema.json +96 -0
  22. package/form-schemas/en/OpenBadgeCredential.form-schema.json +113 -0
  23. package/package.json +18 -0
  24. package/schemas/education-degree-graduation-v1.1.schema.json +366 -0
  25. package/schemas/email-v1.0.schema.json +44 -0
  26. package/schemas/employment-current-v1.1.schema.json +267 -0
  27. package/schemas/open-badge-credential.schema.json +1351 -0
@@ -0,0 +1,451 @@
1
+ {
2
+ "@context": {
3
+ "id": "@id",
4
+ "type": "@type",
5
+ "schema": "http://schema.org/",
6
+ "xsd": "https://www.w3.org/2001/XMLSchema#",
7
+ "ob": "https://purl.imsglobal.org/spec/vc/ob/vocab.html#",
8
+ "ceterms": "https://credreg.net/ctdl/terms/",
9
+ "Address": {
10
+ "@id": "https://velocitynetwork.foundation/contexts#Address",
11
+ "@context": {
12
+ "streetAddress": "schema:streetAddress",
13
+ "addressLocality": "schema:addressLocality",
14
+ "addressRegion": "schema:addressRegion",
15
+ "postCode": "schema:postalCode",
16
+ "addressCountry": "schema:addressCountry"
17
+ }
18
+ },
19
+ "Place": {
20
+ "@id": "https://velocitynetwork.foundation/contexts#Place",
21
+ "@context": {
22
+ "name": "schema:name",
23
+ "addressLocality": "schema:addressLocality",
24
+ "addressRegion": "schema:addressRegion",
25
+ "addressCountry": "schema:addressCountry"
26
+ }
27
+ },
28
+ "Validity": {
29
+ "@id": "https://velocitynetwork.foundation/contexts#Validity",
30
+ "@context": {
31
+ "firstValidFrom": {
32
+ "@id": "https://velocitynetwork.foundation/contexts#firstValidFrom",
33
+ "@type": "schema:Date"
34
+ },
35
+ "validFrom": "schema:validFrom",
36
+ "validUntil": "schema:validUntil",
37
+ "validIn": {
38
+ "@id": "https://velocitynetwork.foundation/contexts#place"
39
+ }
40
+ }
41
+ },
42
+ "Person": {
43
+ "@id": "https://velocitynetwork.foundation/contexts#Person",
44
+ "@context": {
45
+ "givenName": "schema:givenName",
46
+ "familyName": "schema:familyName",
47
+ "middleName": "schema:additionalName",
48
+ "namePrefix": "schema:honorificPrefix",
49
+ "nameSuffix": "schema:honorificSuffix",
50
+ "birthDate": "schema:birthDate",
51
+ "birthPlace": {
52
+ "@id": "https://velocitynetwork.foundation/contexts#place"
53
+ },
54
+ "gender": "schema:gender"
55
+ }
56
+ },
57
+ "PersonName": {
58
+ "@id": "https://velocitynetwork.foundation/contexts#PersonName",
59
+ "@context": {
60
+ "givenName": "schema:givenName",
61
+ "familyName": "schema:familyName",
62
+ "middleName": "schema:additionalName",
63
+ "namePrefix": "schema:honorificPrefix",
64
+ "nameSuffix": "schema:honorificSuffix"
65
+ }
66
+ },
67
+ "Organization": {
68
+ "@id": "https://velocitynetwork.foundation/contexts#Organization",
69
+ "@context": {
70
+ "name": "schema:name",
71
+ "identifier": {
72
+ "@id": "schema:identifier",
73
+ "@type": "@id"
74
+ },
75
+ "place": {
76
+ "@id": "https://velocitynetwork.foundation/contexts#place"
77
+ }
78
+ }
79
+ },
80
+ "PrimaryOrganization": "Organization",
81
+ "ObiProfile": {
82
+ "@id": "https://velocitynetwork.foundation/contexts#ObiProfile",
83
+ "@context": {
84
+ "id": "@id",
85
+ "type": "@type"
86
+ }
87
+ },
88
+ "PrimarySourceProfile": "ObiProfile",
89
+ "AlignmentObject": {
90
+ "@id": "https://velocitynetwork.foundation/contexts#AlignmentObject",
91
+ "@context": {
92
+ "targetCode": {
93
+ "@id": "ob:targetCode",
94
+ "@type": "xsd:string"
95
+ },
96
+ "targetDescription": "schema:targetDescription",
97
+ "targetFramework": "schema:targetFramework",
98
+ "targetName": "schema:targetName",
99
+ "targetType": {
100
+ "@id": "ob:targetType",
101
+ "@type": "xsd:string"
102
+ },
103
+ "targetUrl": {
104
+ "@id": "schema:targetUrl",
105
+ "@type": "xsd:anyURI"
106
+ }
107
+ }
108
+ },
109
+ "Score": {
110
+ "@id": "https://velocitynetwork.foundation/contexts#Score",
111
+ "@context": {
112
+ "scoreMethod": {
113
+ "@id": "https://velocitynetwork.foundation/contexts#scoreMethod"
114
+ },
115
+ "scoreValue": {
116
+ "@id": "https://velocitynetwork.foundation/contexts#scoreValue",
117
+ "@type": "xsd:string"
118
+ },
119
+ "result": {
120
+ "@id": "https://velocitynetwork.foundation/contexts#result",
121
+ "@type": "xsd:string"
122
+ },
123
+ "passFail": {
124
+ "@id": "https://velocitynetwork.foundation/contexts#passFail",
125
+ "@type": "xsd:string"
126
+ }
127
+ }
128
+ },
129
+ "ScoreMethod": {
130
+ "@id": "https://velocitynetwork.foundation/contexts#ScoreMethod",
131
+ "@context": {
132
+ "scoreMethodType": "ceterms:scoringMethodType",
133
+ "scoreMethodDescription": "ceterms:scoringMethodDescription",
134
+ "alignment": {
135
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
136
+ "@container": "@set"
137
+ },
138
+ "passingScore": "ceterms:requires"
139
+ }
140
+ },
141
+ "Email": {
142
+ "@id": "https://velocitynetwork.foundation/contexts#Email",
143
+ "@context": {
144
+ "email": "schema:email"
145
+ }
146
+ },
147
+ "Phone": {
148
+ "@id": "https://velocitynetwork.foundation/contexts#Phone",
149
+ "@context": {
150
+ "phone": "schema:telephone"
151
+ }
152
+ },
153
+ "IdDocument": {
154
+ "@id": "https://velocitynetwork.foundation/contexts#IdDocument",
155
+ "@context": {
156
+ "documentType": "schema:additionalType",
157
+ "postalAddress": {
158
+ "@id": "https://velocitynetwork.foundation/contexts#address"
159
+ },
160
+ "authority": {
161
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
162
+ },
163
+ "validity": {
164
+ "@id": "https://velocitynetwork.foundation/contexts#validity"
165
+ },
166
+ "person": {
167
+ "@id": "https://velocitynetwork.foundation/contexts#person"
168
+ },
169
+ "identifier": {
170
+ "@id": "schema:identifier",
171
+ "@type": "@id"
172
+ },
173
+ "nationality": "schema:addressCountry"
174
+ }
175
+ },
176
+ "Passport": {
177
+ "@id": "https://velocitynetwork.foundation/contexts#Passport",
178
+ "@context": {
179
+ "documentCode": "schema:additionalType",
180
+ "authority": {
181
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
182
+ },
183
+ "validity": {
184
+ "@id": "https://velocitynetwork.foundation/contexts#validity"
185
+ },
186
+ "person": {
187
+ "@id": "https://velocitynetwork.foundation/contexts#person"
188
+ },
189
+ "identifier": {
190
+ "@id": "schema:identifier",
191
+ "@type": "@id"
192
+ },
193
+ "nationality": "schema:addressCountry"
194
+ }
195
+ },
196
+ "DriversLicense": {
197
+ "@id": "https://velocitynetwork.foundation/contexts#DriversLicense",
198
+ "@context": {
199
+ "authority": {
200
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
201
+ },
202
+ "validity": {
203
+ "@id": "https://velocitynetwork.foundation/contexts#validity"
204
+ },
205
+ "person": {
206
+ "@id": "https://velocitynetwork.foundation/contexts#person"
207
+ },
208
+ "identifier": {
209
+ "@id": "schema:identifier",
210
+ "@type": "@id"
211
+ },
212
+ "nationality": "schema:addressCountry",
213
+ "address": {
214
+ "@id": "https://velocitynetwork.foundation/contexts#address"
215
+ },
216
+ "description": "schema:description",
217
+ "endorsementCode": {
218
+ "@id": "xsd:string",
219
+ "@container": "@set"
220
+ },
221
+ "restrictionCode": {
222
+ "@id": "xsd:string",
223
+ "@container": "@set"
224
+ },
225
+ "alignment": {
226
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
227
+ "@container": "@set"
228
+ }
229
+ }
230
+ },
231
+ "Employment": {
232
+ "@id": "https://velocitynetwork.foundation/contexts#Employment",
233
+ "@context": {
234
+ "legalEmployer": {
235
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
236
+ },
237
+ "role": "schema:roleName",
238
+ "description": "schema:description",
239
+ "employmentType": "schema:employmentType",
240
+ "startDate": {
241
+ "@id": "https://velocitynetwork.foundation/contexts#startDate",
242
+ "@type": "schema:Date"
243
+ },
244
+ "endDate": {
245
+ "@id": "https://velocitynetwork.foundation/contexts#endDate",
246
+ "@type": "schema:Date"
247
+ },
248
+ "place": "https://velocitynetwork.foundation/contexts#place",
249
+ "alignment": {
250
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
251
+ "@container": "@set"
252
+ },
253
+ "recipient": {
254
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
255
+ }
256
+ }
257
+ },
258
+ "EducationDegree": {
259
+ "@id": "https://velocitynetwork.foundation/contexts#EducationDegree",
260
+ "@context": {
261
+ "institution": {
262
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
263
+ },
264
+ "school": {
265
+ "@id": "https://velocitynetwork.foundation/contexts#organization"
266
+ },
267
+ "programName": "schema:name",
268
+ "programType": "schema:programType",
269
+ "programMode": "schema:educationalProgramMode",
270
+ "degreeName": "schema:educationalCredentialAwarded",
271
+ "degreeMajor": "ceterms:degreeMajor",
272
+ "degreeMinor": "ceterms:degreeMinor",
273
+ "description": "schema:description",
274
+ "alignment": {
275
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
276
+ "@container": "@set"
277
+ },
278
+ "registrationDate": {
279
+ "@id": "https://velocitynetwork.foundation/contexts#registrationDate",
280
+ "@type": "schema:Date"
281
+ },
282
+ "conferredDate": {
283
+ "@id": "https://velocitynetwork.foundation/contexts#conferredDate",
284
+ "@type": "schema:Date"
285
+ },
286
+ "startDate": {
287
+ "@id": "https://velocitynetwork.foundation/contexts#startDate",
288
+ "@type": "schema:Date"
289
+ },
290
+ "endDate": {
291
+ "@id": "https://velocitynetwork.foundation/contexts#endDate",
292
+ "@type": "schema:Date"
293
+ },
294
+ "honors": "xsd:string",
295
+ "grade": {
296
+ "@id": "https://velocitynetwork.foundation/contexts#score"
297
+ },
298
+ "recipient": {
299
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
300
+ }
301
+ }
302
+ },
303
+ "Course": {
304
+ "@id": "https://velocitynetwork.foundation/contexts#Course",
305
+ "@context": {
306
+ "provider": {
307
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
308
+ },
309
+ "contentProvider": {
310
+ "@id": "https://velocitynetwork.foundation/contexts#organization"
311
+ },
312
+ "courseName": "schema:educationalCredentialAwarded",
313
+ "courseCode": "schema:courseCode",
314
+ "courseType": "schema:programType",
315
+ "courseMode": "schema:educationalProgramMode",
316
+ "courseLevel": "schema:educationalLevel",
317
+ "courseDuration": "schema:timeToComplete",
318
+ "description": "schema:description",
319
+ "alignment": {
320
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
321
+ "@container": "@set"
322
+ },
323
+ "grade": {
324
+ "@id": "https://velocitynetwork.foundation/contexts#score"
325
+ },
326
+ "registrationDate": {
327
+ "@id": "https://velocitynetwork.foundation/contexts#registrationDate",
328
+ "@type": "schema:Date"
329
+ },
330
+ "startDate": {
331
+ "@id": "https://velocitynetwork.foundation/contexts#startDate",
332
+ "@type": "schema:Date"
333
+ },
334
+ "completionDate": {
335
+ "@id": "https://velocitynetwork.foundation/contexts#completionDate",
336
+ "@type": "schema:Date"
337
+ },
338
+ "recipient": {
339
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
340
+ }
341
+ }
342
+ },
343
+ "AssessmentDimension": {
344
+ "@id": "https://velocitynetwork.foundation/contexts#AssessmentDimension",
345
+ "@context": {
346
+ "name": "schema:name",
347
+ "assesses": "schema:assesses",
348
+ "description": "schema:description",
349
+ "assessmentLevel": "schema:educationalLevel",
350
+ "assessmentMethod": "ceterms:assessmentMethodDescription",
351
+ "alignment": {
352
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
353
+ "@container": "@set"
354
+ },
355
+ "score": {
356
+ "@id": "https://velocitynetwork.foundation/contexts#score"
357
+ },
358
+ "assessmentDate": {
359
+ "@id": "https://velocitynetwork.foundation/contexts#assessmentDate",
360
+ "@type": "schema:Date"
361
+ }
362
+ }
363
+ },
364
+ "Assessment": {
365
+ "@id": "https://velocitynetwork.foundation/contexts#Assessment",
366
+ "@context": {
367
+ "name": "schema:name",
368
+ "assesses": "schema:assesses",
369
+ "description": "schema:description",
370
+ "assessmentLevel": "schema:educationalLevel",
371
+ "assessmentMethod": "ceterms:assessmentMethodDescription",
372
+ "alignment": {
373
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
374
+ "@container": "@set"
375
+ },
376
+ "score": {
377
+ "@id": "https://velocitynetwork.foundation/contexts#score"
378
+ },
379
+ "assessmentDate": {
380
+ "@id": "https://velocitynetwork.foundation/contexts#assessmentDate",
381
+ "@type": "schema:Date"
382
+ },
383
+ "authority": {
384
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
385
+ },
386
+ "assessmentDimensions": {
387
+ "@id": "https://velocitynetwork.foundation/contexts#assessmentDimension",
388
+ "@container": "@list"
389
+ },
390
+ "recipient": {
391
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
392
+ }
393
+ }
394
+ },
395
+ "CertificationLicense": {
396
+ "@id": "https://velocitynetwork.foundation/contexts#CertificationLicense",
397
+ "@context": {
398
+ "name": "schema:name",
399
+ "authority": {
400
+ "@id": "https://velocitynetwork.foundation/contexts#primaryOrganization"
401
+ },
402
+ "description": "schema:description",
403
+ "identifier": {
404
+ "@id": "schema:identifier",
405
+ "@type": "@id"
406
+ },
407
+ "validity": {
408
+ "@id": "https://velocitynetwork.foundation/contexts#validity"
409
+ },
410
+ "alignment": {
411
+ "@id": "https://velocitynetwork.foundation/contexts#alignment",
412
+ "@container": "@set"
413
+ },
414
+ "endorsementCode": {
415
+ "@id": "xsd:string",
416
+ "@container": "@set"
417
+ },
418
+ "restrictionCode": {
419
+ "@id": "xsd:string",
420
+ "@container": "@set"
421
+ },
422
+ "recipient": {
423
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
424
+ }
425
+ }
426
+ },
427
+ "Badge": {
428
+ "@id": "https://velocitynetwork.foundation/contexts#Badge",
429
+ "@context": {
430
+ "issuer": {
431
+ "@id": "https://velocitynetwork.foundation/contexts#primarySourceProfile"
432
+ },
433
+ "hasCredential": {
434
+ "@id": "https://velocitynetwork.foundation/contexts#hasCredential"
435
+ },
436
+ "recipient": {
437
+ "@id": "https://velocitynetwork.foundation/contexts#personName"
438
+ }
439
+ }
440
+ },
441
+ "AchievementSubject": {
442
+ "@id": "https://velocitynetwork.foundation/contexts#Badge",
443
+ "@context": {
444
+ "source": {
445
+ "@id": "https://velocitynetwork.foundation/contexts#primarySourceProfile",
446
+ "@type": "@id"
447
+ }
448
+ }
449
+ }
450
+ }
451
+ }