@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.
- package/LICENSE +202 -0
- package/contexts/credential-extensions-2022.jsonld.json +36 -0
- package/contexts/layer1-v1.0.jsonld.json +414 -0
- package/contexts/layer1-v1.1.jsonld.json +451 -0
- package/display-descriptors/education-degree-graduation-v1.1.descriptor.json +263 -0
- package/display-descriptors/email-v1.0.descriptor.json +19 -0
- package/display-descriptors/employment-current-v1.1.descriptor.json +189 -0
- package/display-descriptors/en/education-degree-graduation-v1.1.descriptor.json +263 -0
- package/display-descriptors/en/email-v1.0.descriptor.json +19 -0
- package/display-descriptors/en/employment-current-v1.1.descriptor.json +189 -0
- package/display-descriptors/en/open-badge-credential.descriptor.json +259 -0
- package/display-descriptors/open-badge-credential.descriptor.json +259 -0
- package/docker/compose.yml +9 -0
- package/docker/nginx.conf +9 -0
- package/form-schemas/EducationDegreeGraduationV1.1.form-schema.json +126 -0
- package/form-schemas/EmailV1.0.form-schema.json +5 -0
- package/form-schemas/EmploymentCurrentV1.1.form-schema.json +96 -0
- package/form-schemas/OpenBadgeCredential.form-schema.json +113 -0
- package/form-schemas/en/EducationDegreeGraduationV1.1.form-schema.json +126 -0
- package/form-schemas/en/EmailV1.0.form-schema.json +5 -0
- package/form-schemas/en/EmploymentCurrentV1.1.form-schema.json +96 -0
- package/form-schemas/en/OpenBadgeCredential.form-schema.json +113 -0
- package/package.json +18 -0
- package/schemas/education-degree-graduation-v1.1.schema.json +366 -0
- package/schemas/email-v1.0.schema.json +44 -0
- package/schemas/employment-current-v1.1.schema.json +267 -0
- package/schemas/open-badge-credential.schema.json +1351 -0
@@ -0,0 +1,263 @@
|
|
1
|
+
{
|
2
|
+
"title": {
|
3
|
+
"path": [
|
4
|
+
"$.institution.name",
|
5
|
+
"$.credentialSubject.institution.name"
|
6
|
+
],
|
7
|
+
"schema": {
|
8
|
+
"type": "string"
|
9
|
+
},
|
10
|
+
"fallback": "-"
|
11
|
+
},
|
12
|
+
"subtitle": {
|
13
|
+
"path": [
|
14
|
+
"$.degreeName",
|
15
|
+
"$.credentialSubject.degreeName"
|
16
|
+
],
|
17
|
+
"schema": {
|
18
|
+
"type": "string"
|
19
|
+
},
|
20
|
+
"fallback": "-"
|
21
|
+
},
|
22
|
+
"summary_detail": {
|
23
|
+
"path": [
|
24
|
+
"$.conferredDate",
|
25
|
+
"$.credentialSubject.conferredDate"
|
26
|
+
],
|
27
|
+
"schema": {
|
28
|
+
"type": "string",
|
29
|
+
"format": "date"
|
30
|
+
},
|
31
|
+
"fallback": "$.school.name"
|
32
|
+
},
|
33
|
+
"description": {
|
34
|
+
"text": "Degree graduation"
|
35
|
+
},
|
36
|
+
"logo": {
|
37
|
+
"path": [
|
38
|
+
"$.institution.image",
|
39
|
+
"$.credentialSubject.institution.image"
|
40
|
+
],
|
41
|
+
"schema": {
|
42
|
+
"type": "string",
|
43
|
+
"format": "uri"
|
44
|
+
}
|
45
|
+
},
|
46
|
+
"properties": [
|
47
|
+
{
|
48
|
+
"label": "School or department",
|
49
|
+
"path": [
|
50
|
+
"$.school.name",
|
51
|
+
"$.credentialSubject.school.name"
|
52
|
+
],
|
53
|
+
"schema": {
|
54
|
+
"type": "string"
|
55
|
+
}
|
56
|
+
},
|
57
|
+
{
|
58
|
+
"label": "Degree description",
|
59
|
+
"path": [
|
60
|
+
"$.description",
|
61
|
+
"$.credentialSubject.description"
|
62
|
+
],
|
63
|
+
"schema": {
|
64
|
+
"type": "string"
|
65
|
+
}
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"label": "Registration date",
|
69
|
+
"path": [
|
70
|
+
"$.registrationDate",
|
71
|
+
"$.credentialSubject.registrationDate"
|
72
|
+
],
|
73
|
+
"schema": {
|
74
|
+
"type": "string",
|
75
|
+
"format": "date"
|
76
|
+
}
|
77
|
+
},
|
78
|
+
{
|
79
|
+
"label": "Start date",
|
80
|
+
"path": [
|
81
|
+
"$.startDate",
|
82
|
+
"$.credentialSubject.startDate"
|
83
|
+
],
|
84
|
+
"schema": {
|
85
|
+
"type": "string",
|
86
|
+
"format": "date"
|
87
|
+
}
|
88
|
+
},
|
89
|
+
{
|
90
|
+
"label": "End date",
|
91
|
+
"path": [
|
92
|
+
"$.endDate",
|
93
|
+
"$.credentialSubject.endDate"
|
94
|
+
],
|
95
|
+
"schema": {
|
96
|
+
"type": "string",
|
97
|
+
"format": "date"
|
98
|
+
}
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"label": "Date conferred",
|
102
|
+
"path": [
|
103
|
+
"$.conferredDate",
|
104
|
+
"$.credentialSubject.conferredDate"
|
105
|
+
],
|
106
|
+
"schema": {
|
107
|
+
"type": "string",
|
108
|
+
"format": "date"
|
109
|
+
}
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"label": "Grade",
|
113
|
+
"path": [
|
114
|
+
"$.grade.scoreValue",
|
115
|
+
"$.credentialSubject.grade.scoreValue"
|
116
|
+
],
|
117
|
+
"schema": {
|
118
|
+
"type": "string"
|
119
|
+
}
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"label": "Result",
|
123
|
+
"path": [
|
124
|
+
"$.grade.result",
|
125
|
+
"$.credentialSubject.grade.result"
|
126
|
+
],
|
127
|
+
"schema": {
|
128
|
+
"type": "string"
|
129
|
+
}
|
130
|
+
},
|
131
|
+
{
|
132
|
+
"label": "Pass or fail",
|
133
|
+
"path": [
|
134
|
+
"$.grade.passFail",
|
135
|
+
"$.credentialSubject.grade.passFail"
|
136
|
+
],
|
137
|
+
"schema": {
|
138
|
+
"type": "string"
|
139
|
+
}
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"label": "Honors",
|
143
|
+
"path": [
|
144
|
+
"$.honors",
|
145
|
+
"$.credentialSubject.honors"
|
146
|
+
],
|
147
|
+
"schema": {
|
148
|
+
"type": "string"
|
149
|
+
}
|
150
|
+
},
|
151
|
+
{
|
152
|
+
"label": "Major(s)",
|
153
|
+
"path": [
|
154
|
+
"$.degreeMajor[*]",
|
155
|
+
"$.credentialSubject.degreeMajor[*]"
|
156
|
+
],
|
157
|
+
"schema": {
|
158
|
+
"type": "string"
|
159
|
+
}
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"label": "Minor(s)",
|
163
|
+
"path": [
|
164
|
+
"$.degreeMinor[*]",
|
165
|
+
"$.credentialSubject.degreeMinor[*]"
|
166
|
+
],
|
167
|
+
"schema": {
|
168
|
+
"type": "string"
|
169
|
+
}
|
170
|
+
},
|
171
|
+
{
|
172
|
+
"label": "Program",
|
173
|
+
"path": [
|
174
|
+
"$.programName",
|
175
|
+
"$.credentialSubject.programName"
|
176
|
+
],
|
177
|
+
"schema": {
|
178
|
+
"type": "string"
|
179
|
+
}
|
180
|
+
},
|
181
|
+
{
|
182
|
+
"label": "Program type",
|
183
|
+
"path": [
|
184
|
+
"$.programType",
|
185
|
+
"$.credentialSubject.programType"
|
186
|
+
],
|
187
|
+
"schema": {
|
188
|
+
"type": "string"
|
189
|
+
}
|
190
|
+
},
|
191
|
+
{
|
192
|
+
"label": "Program mode",
|
193
|
+
"path": [
|
194
|
+
"$.programMode",
|
195
|
+
"$.credentialSubject.programMode"
|
196
|
+
],
|
197
|
+
"schema": {
|
198
|
+
"type": "string"
|
199
|
+
}
|
200
|
+
},
|
201
|
+
{
|
202
|
+
"label": "First name",
|
203
|
+
"path": [
|
204
|
+
"$.recipient.givenName",
|
205
|
+
"$.credentialSubject.recipient.givenName"
|
206
|
+
],
|
207
|
+
"schema": {
|
208
|
+
"type": "string"
|
209
|
+
}
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"label": "Middle name",
|
213
|
+
"path": [
|
214
|
+
"$.recipient.middleName",
|
215
|
+
"$.credentialSubject.recipient.middleName"
|
216
|
+
],
|
217
|
+
"schema": {
|
218
|
+
"type": "string"
|
219
|
+
}
|
220
|
+
},
|
221
|
+
{
|
222
|
+
"label": "Last name",
|
223
|
+
"path": [
|
224
|
+
"$.recipient.familyName",
|
225
|
+
"$.credentialSubject.recipient.familyName"
|
226
|
+
],
|
227
|
+
"schema": {
|
228
|
+
"type": "string"
|
229
|
+
}
|
230
|
+
},
|
231
|
+
{
|
232
|
+
"label": "Name prefix",
|
233
|
+
"path": [
|
234
|
+
"$.recipient.namePrefix",
|
235
|
+
"$.credentialSubject.recipient.namePrefix"
|
236
|
+
],
|
237
|
+
"schema": {
|
238
|
+
"type": "string"
|
239
|
+
}
|
240
|
+
},
|
241
|
+
{
|
242
|
+
"label": "Name suffix",
|
243
|
+
"path": [
|
244
|
+
"$.recipient.nameSuffix",
|
245
|
+
"$.credentialSubject.recipient.nameSuffix"
|
246
|
+
],
|
247
|
+
"schema": {
|
248
|
+
"type": "string"
|
249
|
+
}
|
250
|
+
},
|
251
|
+
{
|
252
|
+
"label": "Learn more about the credential",
|
253
|
+
"path": [
|
254
|
+
"$.alignment[0].targetUrl",
|
255
|
+
"$.credentialSubject.alignment[0].targetUrl"
|
256
|
+
],
|
257
|
+
"schema": {
|
258
|
+
"type": "string",
|
259
|
+
"format": "uri"
|
260
|
+
}
|
261
|
+
}
|
262
|
+
]
|
263
|
+
}
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"title": {
|
3
|
+
"text": "Email"
|
4
|
+
},
|
5
|
+
"description": {
|
6
|
+
"text": "Email"
|
7
|
+
},
|
8
|
+
"subtitle": {
|
9
|
+
"path": [
|
10
|
+
"$.email",
|
11
|
+
"$.credentialSubject.email"
|
12
|
+
],
|
13
|
+
"schema": {
|
14
|
+
"type": "string",
|
15
|
+
"format": "email"
|
16
|
+
},
|
17
|
+
"fallback": "-"
|
18
|
+
}
|
19
|
+
}
|
@@ -0,0 +1,189 @@
|
|
1
|
+
{
|
2
|
+
"title": {
|
3
|
+
"path": [
|
4
|
+
"$.legalEmployer.name",
|
5
|
+
"$.credentialSubject.legalEmployer.name"
|
6
|
+
],
|
7
|
+
"schema": {
|
8
|
+
"type": "string"
|
9
|
+
},
|
10
|
+
"fallback": "-"
|
11
|
+
},
|
12
|
+
"subtitle": {
|
13
|
+
"path": [
|
14
|
+
"$.role",
|
15
|
+
"$.credentialSubject.role"
|
16
|
+
],
|
17
|
+
"schema": {
|
18
|
+
"type": "string"
|
19
|
+
},
|
20
|
+
"fallback": "-"
|
21
|
+
},
|
22
|
+
"summary_detail": {
|
23
|
+
"path": [
|
24
|
+
"$.place.name",
|
25
|
+
"$.credentialSubject.place.name"
|
26
|
+
],
|
27
|
+
"schema": {
|
28
|
+
"type": "string"
|
29
|
+
},
|
30
|
+
"fallback": "$.place.addressLocality"
|
31
|
+
},
|
32
|
+
"description": {
|
33
|
+
"text": "Current employment position"
|
34
|
+
},
|
35
|
+
"logo": {
|
36
|
+
"path": [
|
37
|
+
"$.legalEmployer.image",
|
38
|
+
"$.credentialSubject.legalEmployer.image"
|
39
|
+
],
|
40
|
+
"schema": {
|
41
|
+
"type": "string",
|
42
|
+
"format": "uri"
|
43
|
+
}
|
44
|
+
},
|
45
|
+
"properties": [
|
46
|
+
{
|
47
|
+
"label": "Role",
|
48
|
+
"path": [
|
49
|
+
"$.role",
|
50
|
+
"$.credentialSubject.role"
|
51
|
+
],
|
52
|
+
"schema": {
|
53
|
+
"type": "string"
|
54
|
+
}
|
55
|
+
},
|
56
|
+
{
|
57
|
+
"label": "Role description",
|
58
|
+
"path": [
|
59
|
+
"$.description",
|
60
|
+
"$.credentialSubject.description"
|
61
|
+
],
|
62
|
+
"schema": {
|
63
|
+
"type": "string"
|
64
|
+
}
|
65
|
+
},
|
66
|
+
{
|
67
|
+
"label": "Start date",
|
68
|
+
"path": [
|
69
|
+
"$.startDate",
|
70
|
+
"$.credentialSubject.startDate"
|
71
|
+
],
|
72
|
+
"schema": {
|
73
|
+
"type": "string",
|
74
|
+
"format": "date"
|
75
|
+
}
|
76
|
+
},
|
77
|
+
{
|
78
|
+
"label": "Place of work",
|
79
|
+
"path": [
|
80
|
+
"$.place.name",
|
81
|
+
"$.credentialSubject.place.name"
|
82
|
+
],
|
83
|
+
"schema": {
|
84
|
+
"type": "string"
|
85
|
+
}
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"label": "City of work",
|
89
|
+
"path": [
|
90
|
+
"$.place.addressLocality",
|
91
|
+
"$.credentialSubject.place.addressLocality"
|
92
|
+
],
|
93
|
+
"schema": {
|
94
|
+
"type": "string"
|
95
|
+
}
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"label": "State or region of work",
|
99
|
+
"path": [
|
100
|
+
"$.place.addressRegion",
|
101
|
+
"$.credentialSubject.place.addressRegion"
|
102
|
+
],
|
103
|
+
"schema": {
|
104
|
+
"type": "string"
|
105
|
+
}
|
106
|
+
},
|
107
|
+
{
|
108
|
+
"label": "Country of work",
|
109
|
+
"path": [
|
110
|
+
"$.place.addressCountry",
|
111
|
+
"$.credentialSubject.place.addressCountry"
|
112
|
+
],
|
113
|
+
"schema": {
|
114
|
+
"type": "string"
|
115
|
+
}
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"label": "Employment type",
|
119
|
+
"path": [
|
120
|
+
"$.employmentType[*]",
|
121
|
+
"$.credentialSubject.employmentType[*]"
|
122
|
+
],
|
123
|
+
"schema": {
|
124
|
+
"type": "string"
|
125
|
+
}
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"label": "First name",
|
129
|
+
"path": [
|
130
|
+
"$.recipient.givenName",
|
131
|
+
"$.credentialSubject.recipient.givenName"
|
132
|
+
],
|
133
|
+
"schema": {
|
134
|
+
"type": "string"
|
135
|
+
}
|
136
|
+
},
|
137
|
+
{
|
138
|
+
"label": "Middle name",
|
139
|
+
"path": [
|
140
|
+
"$.recipient.middleName",
|
141
|
+
"$.credentialSubject.recipient.middleName"
|
142
|
+
],
|
143
|
+
"schema": {
|
144
|
+
"type": "string"
|
145
|
+
}
|
146
|
+
},
|
147
|
+
{
|
148
|
+
"label": "Last name",
|
149
|
+
"path": [
|
150
|
+
"$.recipient.familyName",
|
151
|
+
"$.credentialSubject.recipient.familyName"
|
152
|
+
],
|
153
|
+
"schema": {
|
154
|
+
"type": "string"
|
155
|
+
}
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"label": "Mame prefix",
|
159
|
+
"path": [
|
160
|
+
"$.recipient.namePrefix",
|
161
|
+
"$.credentialSubject.recipient.namePrefix"
|
162
|
+
],
|
163
|
+
"schema": {
|
164
|
+
"type": "string"
|
165
|
+
}
|
166
|
+
},
|
167
|
+
{
|
168
|
+
"label": "Name suffix",
|
169
|
+
"path": [
|
170
|
+
"$.recipient.nameSuffix",
|
171
|
+
"$.credentialSubject.recipient.nameSuffix"
|
172
|
+
],
|
173
|
+
"schema": {
|
174
|
+
"type": "string"
|
175
|
+
}
|
176
|
+
},
|
177
|
+
{
|
178
|
+
"label": "Learn more about the credential",
|
179
|
+
"path": [
|
180
|
+
"$.alignment[0].targetUrl",
|
181
|
+
"$.credentialSubject.alignment[0].targetUrl"
|
182
|
+
],
|
183
|
+
"schema": {
|
184
|
+
"type": "string",
|
185
|
+
"format": "uri"
|
186
|
+
}
|
187
|
+
}
|
188
|
+
]
|
189
|
+
}
|