@learncard/credential-library 1.0.10 → 1.0.12
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/README.md +104 -98
- package/package.json +49 -39
- package/src/__tests__/issuance.test.ts +51 -0
- package/src/__tests__/registry.test.ts +457 -0
- package/src/fixtures/boost/basic.ts +50 -0
- package/src/fixtures/boost/boost-id.ts +59 -0
- package/src/fixtures/boost/community-award.ts +96 -0
- package/src/fixtures/boost/delegate.ts +60 -0
- package/src/fixtures/boost/with-skills.ts +80 -0
- package/src/fixtures/clr/competency-aligned.ts +737 -0
- package/src/fixtures/clr/great-plains-full.ts +7841 -0
- package/src/fixtures/clr/minimal.ts +53 -0
- package/src/fixtures/clr/multi-achievement.ts +125 -0
- package/src/fixtures/clr/nd-student-transcript.ts +411 -0
- package/src/fixtures/clr/university-transcript.ts +328 -0
- package/src/fixtures/clr/westbridge-full.ts +2524 -0
- package/src/fixtures/index.ts +159 -0
- package/src/fixtures/invalid/empty-type.ts +27 -0
- package/src/fixtures/invalid/missing-context.ts +27 -0
- package/src/fixtures/invalid/missing-issuer.ts +27 -0
- package/src/fixtures/obv3/1edtech-full.ts +237 -0
- package/src/fixtures/obv3/course-completion.ts +82 -0
- package/src/fixtures/obv3/endorsement.ts +58 -0
- package/src/fixtures/obv3/full-badge.ts +121 -0
- package/src/fixtures/obv3/k12-diploma.ts +92 -0
- package/src/fixtures/obv3/micro-credential.ts +170 -0
- package/src/fixtures/obv3/minimal-badge.ts +40 -0
- package/src/fixtures/obv3/plugfest-jff2.ts +57 -0
- package/src/fixtures/obv3/professional-cert.ts +102 -0
- package/src/fixtures/obv3/with-alignment.ts +62 -0
- package/src/fixtures/obv3/with-endorsement.ts +62 -0
- package/src/fixtures/render-method/render-method-example.ts +45 -0
- package/src/fixtures/vc-v1/alumni-credential.ts +37 -0
- package/src/fixtures/vc-v1/basic.ts +27 -0
- package/src/fixtures/vc-v1/with-status.ts +44 -0
- package/src/fixtures/vc-v2/basic.ts +27 -0
- package/src/fixtures/vc-v2/digital-id.ts +78 -0
- package/src/fixtures/vc-v2/education-degree.ts +77 -0
- package/src/fixtures/vc-v2/employment-credential.ts +64 -0
- package/src/fixtures/vc-v2/license-credential.ts +79 -0
- package/src/fixtures/vc-v2/membership-credential.ts +62 -0
- package/src/fixtures/vc-v2/multiple-subjects.ts +39 -0
- package/src/fixtures/vc-v2/with-evidence.ts +50 -0
- package/src/index.ts +45 -0
- package/src/prepare.ts +212 -0
- package/src/registry.ts +209 -0
- package/src/types.ts +164 -0
|
@@ -0,0 +1,2524 @@
|
|
|
1
|
+
import type { CredentialFixture } from '../../types';
|
|
2
|
+
|
|
3
|
+
export const clrWestbridgeFull: CredentialFixture = {
|
|
4
|
+
id: 'clr/westbridge-full',
|
|
5
|
+
name: 'Westbridge University — Full Data Science Transcript',
|
|
6
|
+
description:
|
|
7
|
+
'A maximally rich CLR v2 transcript for a fictional 4-year Bachelor of Science in Data Science program. Exercises courses, programs, competencies, assessments, alignment, evidence, credentialStatus, termsOfUse, and credentialSchema across 8 semesters.',
|
|
8
|
+
spec: 'clr-v2',
|
|
9
|
+
profile: 'learner-record',
|
|
10
|
+
features: [
|
|
11
|
+
'results',
|
|
12
|
+
'evidence',
|
|
13
|
+
'alignment',
|
|
14
|
+
'image',
|
|
15
|
+
'associations',
|
|
16
|
+
'nested-credentials',
|
|
17
|
+
'status',
|
|
18
|
+
'credential-schema',
|
|
19
|
+
],
|
|
20
|
+
source: 'synthetic',
|
|
21
|
+
signed: false,
|
|
22
|
+
validity: 'valid',
|
|
23
|
+
tags: ['transcript', 'university', 'data-science', 'comprehensive', 'clr-v2', 'maximum-data'],
|
|
24
|
+
|
|
25
|
+
credential: {
|
|
26
|
+
'@context': [
|
|
27
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
28
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
29
|
+
'https://purl.imsglobal.org/spec/clr/v2p0/context-2.0.1.json',
|
|
30
|
+
],
|
|
31
|
+
id: 'urn:uuid:wb-clr-2025-jordan-reyes-001',
|
|
32
|
+
type: ['VerifiableCredential', 'ClrCredential'],
|
|
33
|
+
name: 'Official Academic Transcript — Westbridge University',
|
|
34
|
+
description:
|
|
35
|
+
'Official academic transcript for the Bachelor of Science in Data Science awarded to Jordan A. Reyes, covering eight semesters of coursework, competency assessments, and degree conferral.',
|
|
36
|
+
image: {
|
|
37
|
+
id: 'https://westbridgeuniversity.com/wp-content/uploads/2021/03/logo-with-bg-fill.jpg',
|
|
38
|
+
type: 'Image',
|
|
39
|
+
caption: 'Westbridge University official logo',
|
|
40
|
+
},
|
|
41
|
+
issuer: {
|
|
42
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
43
|
+
type: ['Profile'],
|
|
44
|
+
name: 'Westbridge University — Office of the Registrar',
|
|
45
|
+
description:
|
|
46
|
+
'The Office of the Registrar at Westbridge University maintains official academic records and issues verified credentials on behalf of the institution.',
|
|
47
|
+
url: 'https://westbridge.edu/registrar',
|
|
48
|
+
email: 'registrar@westbridge.edu',
|
|
49
|
+
phone: '+1-555-742-0100',
|
|
50
|
+
image: {
|
|
51
|
+
id: 'https://westbridgeuniversity.com/wp-content/uploads/2021/03/logo-with-bg-fill.jpg',
|
|
52
|
+
type: 'Image',
|
|
53
|
+
caption: 'Westbridge University official logo',
|
|
54
|
+
},
|
|
55
|
+
address: {
|
|
56
|
+
type: ['Address'],
|
|
57
|
+
streetAddress: '1 University Boulevard',
|
|
58
|
+
addressLocality: 'Westbridge',
|
|
59
|
+
addressRegion: 'MA',
|
|
60
|
+
postalCode: '02134',
|
|
61
|
+
addressCountry: 'USA',
|
|
62
|
+
},
|
|
63
|
+
},
|
|
64
|
+
validFrom: '2025-05-20T00:00:00Z',
|
|
65
|
+
awardedDate: '2025-05-18',
|
|
66
|
+
credentialStatus: {
|
|
67
|
+
id: 'https://registrar.westbridge.edu/status/2025#42',
|
|
68
|
+
type: 'BitstringStatusListEntry',
|
|
69
|
+
statusPurpose: 'revocation',
|
|
70
|
+
statusListIndex: '42',
|
|
71
|
+
statusListCredential: 'https://registrar.westbridge.edu/status/2025',
|
|
72
|
+
},
|
|
73
|
+
credentialSchema: {
|
|
74
|
+
id: 'https://purl.imsglobal.org/spec/clr/v2p0/schema/json/clr_v2p0_clrcredential_schema.json',
|
|
75
|
+
type: '1EdTechJsonSchemaValidator2019',
|
|
76
|
+
},
|
|
77
|
+
evidence: [
|
|
78
|
+
{
|
|
79
|
+
id: 'https://registrar.westbridge.edu/transcripts/t-wb-2025-001.pdf',
|
|
80
|
+
type: ['Evidence'],
|
|
81
|
+
name: 'Official Academic Transcript',
|
|
82
|
+
description:
|
|
83
|
+
'Official sealed academic transcript issued by the Westbridge University Office of the Registrar.',
|
|
84
|
+
genre: 'Document',
|
|
85
|
+
audience: 'Employer, Graduate School Admissions',
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
id: 'https://registrar.westbridge.edu/diplomas/d-wb-2025-001.jpg',
|
|
89
|
+
type: ['Evidence'],
|
|
90
|
+
name: 'Diploma',
|
|
91
|
+
description: 'Bachelor of Science in Data Science diploma awarded May 18, 2025.',
|
|
92
|
+
genre: 'Image',
|
|
93
|
+
audience: 'General',
|
|
94
|
+
},
|
|
95
|
+
],
|
|
96
|
+
termsOfUse: [
|
|
97
|
+
{
|
|
98
|
+
type: 'IssuerPolicy',
|
|
99
|
+
id: 'https://westbridge.edu/policies/transcript-use',
|
|
100
|
+
},
|
|
101
|
+
],
|
|
102
|
+
credentialSubject: {
|
|
103
|
+
id: 'did:example:wb-student-2025-001',
|
|
104
|
+
type: ['ClrSubject'],
|
|
105
|
+
identifier: [
|
|
106
|
+
{
|
|
107
|
+
type: 'IdentityObject',
|
|
108
|
+
identityHash: 'Jordan A. Reyes',
|
|
109
|
+
identityType: 'name',
|
|
110
|
+
hashed: false,
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'IdentityObject',
|
|
114
|
+
identityHash: 'j.reyes@westbridge.edu',
|
|
115
|
+
identityType: 'emailAddress',
|
|
116
|
+
hashed: false,
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
type: 'IdentityObject',
|
|
120
|
+
identityHash: '20210042',
|
|
121
|
+
identityType: 'studentId',
|
|
122
|
+
hashed: false,
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
type: 'IdentityObject',
|
|
126
|
+
identityHash: '1999-03-14',
|
|
127
|
+
identityType: 'dateOfBirth',
|
|
128
|
+
hashed: false,
|
|
129
|
+
},
|
|
130
|
+
],
|
|
131
|
+
verifiableCredential: [
|
|
132
|
+
// ── YEAR 1 · FALL 2021 ────────────────────────────────────────────
|
|
133
|
+
{
|
|
134
|
+
'@context': [
|
|
135
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
136
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
137
|
+
],
|
|
138
|
+
id: 'urn:uuid:wb-ds101',
|
|
139
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
140
|
+
name: 'DS 101 — Introduction to Data Science',
|
|
141
|
+
issuer: {
|
|
142
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
143
|
+
type: ['Profile'],
|
|
144
|
+
name: 'Westbridge University',
|
|
145
|
+
},
|
|
146
|
+
validFrom: '2021-12-15T00:00:00Z',
|
|
147
|
+
credentialSubject: {
|
|
148
|
+
id: 'did:example:wb-student-2025-001',
|
|
149
|
+
type: ['AchievementSubject'],
|
|
150
|
+
achievement: {
|
|
151
|
+
id: 'https://westbridge.edu/courses/ds101',
|
|
152
|
+
type: ['Achievement'],
|
|
153
|
+
achievementType: 'Course',
|
|
154
|
+
name: 'Introduction to Data Science',
|
|
155
|
+
description:
|
|
156
|
+
'Foundational survey of the data science lifecycle: data collection, cleaning, exploratory analysis, visualization, and basic predictive modeling using Python.',
|
|
157
|
+
humanCode: 'DS 101',
|
|
158
|
+
fieldOfStudy: 'Data Science',
|
|
159
|
+
inLanguage: 'en',
|
|
160
|
+
tag: ['foundation', 'python', 'visualization'],
|
|
161
|
+
creator: {
|
|
162
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
163
|
+
type: ['Profile'],
|
|
164
|
+
name: 'Department of Data Science',
|
|
165
|
+
},
|
|
166
|
+
alignment: [
|
|
167
|
+
{
|
|
168
|
+
type: ['Alignment'],
|
|
169
|
+
targetCode: 'DS.FOUND.1',
|
|
170
|
+
targetName: 'Data Science Foundations',
|
|
171
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
172
|
+
targetType: 'CFItem',
|
|
173
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/FOUND.1',
|
|
174
|
+
targetDescription:
|
|
175
|
+
'Demonstrates foundational knowledge of the data science lifecycle.',
|
|
176
|
+
},
|
|
177
|
+
],
|
|
178
|
+
resultDescription: [
|
|
179
|
+
{
|
|
180
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
181
|
+
type: ['ResultDescription'],
|
|
182
|
+
name: 'Letter Grade',
|
|
183
|
+
resultType: 'LetterGrade',
|
|
184
|
+
allowedValue: [
|
|
185
|
+
'A+',
|
|
186
|
+
'A',
|
|
187
|
+
'A-',
|
|
188
|
+
'B+',
|
|
189
|
+
'B',
|
|
190
|
+
'B-',
|
|
191
|
+
'C+',
|
|
192
|
+
'C',
|
|
193
|
+
'C-',
|
|
194
|
+
'D',
|
|
195
|
+
'F',
|
|
196
|
+
],
|
|
197
|
+
},
|
|
198
|
+
],
|
|
199
|
+
},
|
|
200
|
+
result: [
|
|
201
|
+
{
|
|
202
|
+
type: ['Result'],
|
|
203
|
+
value: 'A',
|
|
204
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
205
|
+
},
|
|
206
|
+
],
|
|
207
|
+
creditsEarned: 3,
|
|
208
|
+
term: 'Fall 2021',
|
|
209
|
+
},
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
'@context': [
|
|
213
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
214
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
215
|
+
],
|
|
216
|
+
id: 'urn:uuid:wb-math151',
|
|
217
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
218
|
+
name: 'MATH 151 — Calculus I',
|
|
219
|
+
issuer: {
|
|
220
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
221
|
+
type: ['Profile'],
|
|
222
|
+
name: 'Westbridge University',
|
|
223
|
+
},
|
|
224
|
+
validFrom: '2021-12-15T00:00:00Z',
|
|
225
|
+
credentialSubject: {
|
|
226
|
+
id: 'did:example:wb-student-2025-001',
|
|
227
|
+
type: ['AchievementSubject'],
|
|
228
|
+
achievement: {
|
|
229
|
+
id: 'https://westbridge.edu/courses/math151',
|
|
230
|
+
type: ['Achievement'],
|
|
231
|
+
achievementType: 'Course',
|
|
232
|
+
name: 'Calculus I',
|
|
233
|
+
description:
|
|
234
|
+
'Limits, derivatives, and integrals of single-variable functions. Applications to optimization, rates of change, and area under curves.',
|
|
235
|
+
humanCode: 'MATH 151',
|
|
236
|
+
fieldOfStudy: 'Mathematics',
|
|
237
|
+
inLanguage: 'en',
|
|
238
|
+
tag: ['calculus', 'mathematics', 'foundation'],
|
|
239
|
+
creator: {
|
|
240
|
+
id: 'https://westbridge.edu/departments/mathematics',
|
|
241
|
+
type: ['Profile'],
|
|
242
|
+
name: 'Department of Mathematics',
|
|
243
|
+
},
|
|
244
|
+
resultDescription: [
|
|
245
|
+
{
|
|
246
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
247
|
+
type: ['ResultDescription'],
|
|
248
|
+
name: 'Letter Grade',
|
|
249
|
+
resultType: 'LetterGrade',
|
|
250
|
+
allowedValue: [
|
|
251
|
+
'A+',
|
|
252
|
+
'A',
|
|
253
|
+
'A-',
|
|
254
|
+
'B+',
|
|
255
|
+
'B',
|
|
256
|
+
'B-',
|
|
257
|
+
'C+',
|
|
258
|
+
'C',
|
|
259
|
+
'C-',
|
|
260
|
+
'D',
|
|
261
|
+
'F',
|
|
262
|
+
],
|
|
263
|
+
},
|
|
264
|
+
],
|
|
265
|
+
},
|
|
266
|
+
result: [
|
|
267
|
+
{
|
|
268
|
+
type: ['Result'],
|
|
269
|
+
value: 'A-',
|
|
270
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
271
|
+
},
|
|
272
|
+
],
|
|
273
|
+
creditsEarned: 4,
|
|
274
|
+
term: 'Fall 2021',
|
|
275
|
+
},
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
'@context': [
|
|
279
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
280
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
281
|
+
],
|
|
282
|
+
id: 'urn:uuid:wb-cs101',
|
|
283
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
284
|
+
name: 'CS 101 — Introduction to Programming',
|
|
285
|
+
issuer: {
|
|
286
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
287
|
+
type: ['Profile'],
|
|
288
|
+
name: 'Westbridge University',
|
|
289
|
+
},
|
|
290
|
+
validFrom: '2021-12-15T00:00:00Z',
|
|
291
|
+
credentialSubject: {
|
|
292
|
+
id: 'did:example:wb-student-2025-001',
|
|
293
|
+
type: ['AchievementSubject'],
|
|
294
|
+
achievement: {
|
|
295
|
+
id: 'https://westbridge.edu/courses/cs101',
|
|
296
|
+
type: ['Achievement'],
|
|
297
|
+
achievementType: 'Course',
|
|
298
|
+
name: 'Introduction to Programming',
|
|
299
|
+
description:
|
|
300
|
+
'Programming fundamentals using Python: variables, control flow, functions, data structures, file I/O, and introductory object-oriented design.',
|
|
301
|
+
humanCode: 'CS 101',
|
|
302
|
+
fieldOfStudy: 'Computer Science',
|
|
303
|
+
inLanguage: 'en',
|
|
304
|
+
tag: ['python', 'programming', 'foundation'],
|
|
305
|
+
creator: {
|
|
306
|
+
id: 'https://westbridge.edu/departments/computer-science',
|
|
307
|
+
type: ['Profile'],
|
|
308
|
+
name: 'Department of Computer Science',
|
|
309
|
+
},
|
|
310
|
+
resultDescription: [
|
|
311
|
+
{
|
|
312
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
313
|
+
type: ['ResultDescription'],
|
|
314
|
+
name: 'Letter Grade',
|
|
315
|
+
resultType: 'LetterGrade',
|
|
316
|
+
allowedValue: [
|
|
317
|
+
'A+',
|
|
318
|
+
'A',
|
|
319
|
+
'A-',
|
|
320
|
+
'B+',
|
|
321
|
+
'B',
|
|
322
|
+
'B-',
|
|
323
|
+
'C+',
|
|
324
|
+
'C',
|
|
325
|
+
'C-',
|
|
326
|
+
'D',
|
|
327
|
+
'F',
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
],
|
|
331
|
+
},
|
|
332
|
+
result: [
|
|
333
|
+
{
|
|
334
|
+
type: ['Result'],
|
|
335
|
+
value: 'A',
|
|
336
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
337
|
+
},
|
|
338
|
+
],
|
|
339
|
+
creditsEarned: 3,
|
|
340
|
+
term: 'Fall 2021',
|
|
341
|
+
},
|
|
342
|
+
},
|
|
343
|
+
|
|
344
|
+
// ── YEAR 1 · SPRING 2022 ──────────────────────────────────────────
|
|
345
|
+
{
|
|
346
|
+
'@context': [
|
|
347
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
348
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
349
|
+
],
|
|
350
|
+
id: 'urn:uuid:wb-stat201',
|
|
351
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
352
|
+
name: 'STAT 201 — Statistics and Probability',
|
|
353
|
+
issuer: {
|
|
354
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
355
|
+
type: ['Profile'],
|
|
356
|
+
name: 'Westbridge University',
|
|
357
|
+
},
|
|
358
|
+
validFrom: '2022-05-10T00:00:00Z',
|
|
359
|
+
credentialSubject: {
|
|
360
|
+
id: 'did:example:wb-student-2025-001',
|
|
361
|
+
type: ['AchievementSubject'],
|
|
362
|
+
achievement: {
|
|
363
|
+
id: 'https://westbridge.edu/courses/stat201',
|
|
364
|
+
type: ['Achievement'],
|
|
365
|
+
achievementType: 'Course',
|
|
366
|
+
name: 'Statistics and Probability',
|
|
367
|
+
description:
|
|
368
|
+
'Descriptive statistics, probability distributions, sampling theory, hypothesis testing, confidence intervals, and linear regression.',
|
|
369
|
+
humanCode: 'STAT 201',
|
|
370
|
+
fieldOfStudy: 'Statistics',
|
|
371
|
+
inLanguage: 'en',
|
|
372
|
+
tag: ['statistics', 'probability', 'inference'],
|
|
373
|
+
creator: {
|
|
374
|
+
id: 'https://westbridge.edu/departments/statistics',
|
|
375
|
+
type: ['Profile'],
|
|
376
|
+
name: 'Department of Statistics and Applied Mathematics',
|
|
377
|
+
},
|
|
378
|
+
alignment: [
|
|
379
|
+
{
|
|
380
|
+
type: ['Alignment'],
|
|
381
|
+
targetCode: 'DS.STAT.1',
|
|
382
|
+
targetName: 'Statistical Reasoning',
|
|
383
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
384
|
+
targetType: 'CFItem',
|
|
385
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/STAT.1',
|
|
386
|
+
targetDescription:
|
|
387
|
+
'Applies statistical reasoning to interpret data and draw valid inferences.',
|
|
388
|
+
},
|
|
389
|
+
],
|
|
390
|
+
resultDescription: [
|
|
391
|
+
{
|
|
392
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
393
|
+
type: ['ResultDescription'],
|
|
394
|
+
name: 'Letter Grade',
|
|
395
|
+
resultType: 'LetterGrade',
|
|
396
|
+
allowedValue: [
|
|
397
|
+
'A+',
|
|
398
|
+
'A',
|
|
399
|
+
'A-',
|
|
400
|
+
'B+',
|
|
401
|
+
'B',
|
|
402
|
+
'B-',
|
|
403
|
+
'C+',
|
|
404
|
+
'C',
|
|
405
|
+
'C-',
|
|
406
|
+
'D',
|
|
407
|
+
'F',
|
|
408
|
+
],
|
|
409
|
+
},
|
|
410
|
+
],
|
|
411
|
+
},
|
|
412
|
+
result: [
|
|
413
|
+
{
|
|
414
|
+
type: ['Result'],
|
|
415
|
+
value: 'A',
|
|
416
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
417
|
+
},
|
|
418
|
+
],
|
|
419
|
+
creditsEarned: 3,
|
|
420
|
+
term: 'Spring 2022',
|
|
421
|
+
},
|
|
422
|
+
},
|
|
423
|
+
{
|
|
424
|
+
'@context': [
|
|
425
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
426
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
427
|
+
],
|
|
428
|
+
id: 'urn:uuid:wb-math201',
|
|
429
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
430
|
+
name: 'MATH 201 — Linear Algebra',
|
|
431
|
+
issuer: {
|
|
432
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
433
|
+
type: ['Profile'],
|
|
434
|
+
name: 'Westbridge University',
|
|
435
|
+
},
|
|
436
|
+
validFrom: '2022-05-10T00:00:00Z',
|
|
437
|
+
credentialSubject: {
|
|
438
|
+
id: 'did:example:wb-student-2025-001',
|
|
439
|
+
type: ['AchievementSubject'],
|
|
440
|
+
achievement: {
|
|
441
|
+
id: 'https://westbridge.edu/courses/math201',
|
|
442
|
+
type: ['Achievement'],
|
|
443
|
+
achievementType: 'Course',
|
|
444
|
+
name: 'Linear Algebra',
|
|
445
|
+
description:
|
|
446
|
+
'Vectors, matrices, systems of linear equations, eigenvalues and eigenvectors, orthogonality, and applications to data transformations.',
|
|
447
|
+
humanCode: 'MATH 201',
|
|
448
|
+
fieldOfStudy: 'Mathematics',
|
|
449
|
+
inLanguage: 'en',
|
|
450
|
+
tag: ['linear-algebra', 'mathematics'],
|
|
451
|
+
creator: {
|
|
452
|
+
id: 'https://westbridge.edu/departments/mathematics',
|
|
453
|
+
type: ['Profile'],
|
|
454
|
+
name: 'Department of Mathematics',
|
|
455
|
+
},
|
|
456
|
+
resultDescription: [
|
|
457
|
+
{
|
|
458
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
459
|
+
type: ['ResultDescription'],
|
|
460
|
+
name: 'Letter Grade',
|
|
461
|
+
resultType: 'LetterGrade',
|
|
462
|
+
allowedValue: [
|
|
463
|
+
'A+',
|
|
464
|
+
'A',
|
|
465
|
+
'A-',
|
|
466
|
+
'B+',
|
|
467
|
+
'B',
|
|
468
|
+
'B-',
|
|
469
|
+
'C+',
|
|
470
|
+
'C',
|
|
471
|
+
'C-',
|
|
472
|
+
'D',
|
|
473
|
+
'F',
|
|
474
|
+
],
|
|
475
|
+
},
|
|
476
|
+
],
|
|
477
|
+
},
|
|
478
|
+
result: [
|
|
479
|
+
{
|
|
480
|
+
type: ['Result'],
|
|
481
|
+
value: 'B+',
|
|
482
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
483
|
+
},
|
|
484
|
+
],
|
|
485
|
+
creditsEarned: 3,
|
|
486
|
+
term: 'Spring 2022',
|
|
487
|
+
},
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
'@context': [
|
|
491
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
492
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
493
|
+
],
|
|
494
|
+
id: 'urn:uuid:wb-ds110',
|
|
495
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
496
|
+
name: 'DS 110 — Data Wrangling and Visualization',
|
|
497
|
+
issuer: {
|
|
498
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
499
|
+
type: ['Profile'],
|
|
500
|
+
name: 'Westbridge University',
|
|
501
|
+
},
|
|
502
|
+
validFrom: '2022-05-10T00:00:00Z',
|
|
503
|
+
credentialSubject: {
|
|
504
|
+
id: 'did:example:wb-student-2025-001',
|
|
505
|
+
type: ['AchievementSubject'],
|
|
506
|
+
achievement: {
|
|
507
|
+
id: 'https://westbridge.edu/courses/ds110',
|
|
508
|
+
type: ['Achievement'],
|
|
509
|
+
achievementType: 'Course',
|
|
510
|
+
name: 'Data Wrangling and Visualization',
|
|
511
|
+
description:
|
|
512
|
+
'Practical data acquisition, cleaning, transformation, and visual storytelling using pandas, Matplotlib, and Seaborn.',
|
|
513
|
+
humanCode: 'DS 110',
|
|
514
|
+
fieldOfStudy: 'Data Science',
|
|
515
|
+
inLanguage: 'en',
|
|
516
|
+
tag: ['pandas', 'visualization', 'python'],
|
|
517
|
+
creator: {
|
|
518
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
519
|
+
type: ['Profile'],
|
|
520
|
+
name: 'Department of Data Science',
|
|
521
|
+
},
|
|
522
|
+
resultDescription: [
|
|
523
|
+
{
|
|
524
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
525
|
+
type: ['ResultDescription'],
|
|
526
|
+
name: 'Letter Grade',
|
|
527
|
+
resultType: 'LetterGrade',
|
|
528
|
+
allowedValue: [
|
|
529
|
+
'A+',
|
|
530
|
+
'A',
|
|
531
|
+
'A-',
|
|
532
|
+
'B+',
|
|
533
|
+
'B',
|
|
534
|
+
'B-',
|
|
535
|
+
'C+',
|
|
536
|
+
'C',
|
|
537
|
+
'C-',
|
|
538
|
+
'D',
|
|
539
|
+
'F',
|
|
540
|
+
],
|
|
541
|
+
},
|
|
542
|
+
],
|
|
543
|
+
},
|
|
544
|
+
result: [
|
|
545
|
+
{
|
|
546
|
+
type: ['Result'],
|
|
547
|
+
value: 'A',
|
|
548
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
549
|
+
},
|
|
550
|
+
],
|
|
551
|
+
creditsEarned: 3,
|
|
552
|
+
term: 'Spring 2022',
|
|
553
|
+
},
|
|
554
|
+
},
|
|
555
|
+
|
|
556
|
+
// ── YEAR 2 · FALL 2022 ────────────────────────────────────────────
|
|
557
|
+
{
|
|
558
|
+
'@context': [
|
|
559
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
560
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
561
|
+
],
|
|
562
|
+
id: 'urn:uuid:wb-ds201',
|
|
563
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
564
|
+
name: 'DS 201 — Machine Learning Fundamentals',
|
|
565
|
+
issuer: {
|
|
566
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
567
|
+
type: ['Profile'],
|
|
568
|
+
name: 'Westbridge University',
|
|
569
|
+
},
|
|
570
|
+
validFrom: '2022-12-14T00:00:00Z',
|
|
571
|
+
credentialSubject: {
|
|
572
|
+
id: 'did:example:wb-student-2025-001',
|
|
573
|
+
type: ['AchievementSubject'],
|
|
574
|
+
achievement: {
|
|
575
|
+
id: 'https://westbridge.edu/courses/ds201',
|
|
576
|
+
type: ['Achievement'],
|
|
577
|
+
achievementType: 'Course',
|
|
578
|
+
name: 'Machine Learning Fundamentals',
|
|
579
|
+
description:
|
|
580
|
+
'Supervised and unsupervised learning algorithms: linear regression, logistic regression, decision trees, k-means, dimensionality reduction. Evaluation metrics and cross-validation.',
|
|
581
|
+
humanCode: 'DS 201',
|
|
582
|
+
fieldOfStudy: 'Data Science',
|
|
583
|
+
inLanguage: 'en',
|
|
584
|
+
tag: ['machine-learning', 'sklearn', 'modeling'],
|
|
585
|
+
creator: {
|
|
586
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
587
|
+
type: ['Profile'],
|
|
588
|
+
name: 'Department of Data Science',
|
|
589
|
+
},
|
|
590
|
+
alignment: [
|
|
591
|
+
{
|
|
592
|
+
type: ['Alignment'],
|
|
593
|
+
targetCode: 'DS.ML.1',
|
|
594
|
+
targetName: 'Machine Learning Literacy',
|
|
595
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
596
|
+
targetType: 'CFItem',
|
|
597
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/ML.1',
|
|
598
|
+
targetDescription:
|
|
599
|
+
'Applies core ML algorithms and selects appropriate evaluation strategies.',
|
|
600
|
+
},
|
|
601
|
+
],
|
|
602
|
+
resultDescription: [
|
|
603
|
+
{
|
|
604
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
605
|
+
type: ['ResultDescription'],
|
|
606
|
+
name: 'Letter Grade',
|
|
607
|
+
resultType: 'LetterGrade',
|
|
608
|
+
allowedValue: [
|
|
609
|
+
'A+',
|
|
610
|
+
'A',
|
|
611
|
+
'A-',
|
|
612
|
+
'B+',
|
|
613
|
+
'B',
|
|
614
|
+
'B-',
|
|
615
|
+
'C+',
|
|
616
|
+
'C',
|
|
617
|
+
'C-',
|
|
618
|
+
'D',
|
|
619
|
+
'F',
|
|
620
|
+
],
|
|
621
|
+
},
|
|
622
|
+
],
|
|
623
|
+
},
|
|
624
|
+
result: [
|
|
625
|
+
{
|
|
626
|
+
type: ['Result'],
|
|
627
|
+
value: 'A',
|
|
628
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
629
|
+
},
|
|
630
|
+
],
|
|
631
|
+
creditsEarned: 3,
|
|
632
|
+
term: 'Fall 2022',
|
|
633
|
+
},
|
|
634
|
+
},
|
|
635
|
+
{
|
|
636
|
+
'@context': [
|
|
637
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
638
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
639
|
+
],
|
|
640
|
+
id: 'urn:uuid:wb-cs201',
|
|
641
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
642
|
+
name: 'CS 201 — Data Structures and Algorithms',
|
|
643
|
+
issuer: {
|
|
644
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
645
|
+
type: ['Profile'],
|
|
646
|
+
name: 'Westbridge University',
|
|
647
|
+
},
|
|
648
|
+
validFrom: '2022-12-14T00:00:00Z',
|
|
649
|
+
credentialSubject: {
|
|
650
|
+
id: 'did:example:wb-student-2025-001',
|
|
651
|
+
type: ['AchievementSubject'],
|
|
652
|
+
achievement: {
|
|
653
|
+
id: 'https://westbridge.edu/courses/cs201',
|
|
654
|
+
type: ['Achievement'],
|
|
655
|
+
achievementType: 'Course',
|
|
656
|
+
name: 'Data Structures and Algorithms',
|
|
657
|
+
description:
|
|
658
|
+
'Arrays, linked lists, trees, graphs, hash tables, sorting algorithms, and complexity analysis.',
|
|
659
|
+
humanCode: 'CS 201',
|
|
660
|
+
fieldOfStudy: 'Computer Science',
|
|
661
|
+
inLanguage: 'en',
|
|
662
|
+
tag: ['algorithms', 'complexity', 'data-structures'],
|
|
663
|
+
creator: {
|
|
664
|
+
id: 'https://westbridge.edu/departments/computer-science',
|
|
665
|
+
type: ['Profile'],
|
|
666
|
+
name: 'Department of Computer Science',
|
|
667
|
+
},
|
|
668
|
+
resultDescription: [
|
|
669
|
+
{
|
|
670
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
671
|
+
type: ['ResultDescription'],
|
|
672
|
+
name: 'Letter Grade',
|
|
673
|
+
resultType: 'LetterGrade',
|
|
674
|
+
allowedValue: [
|
|
675
|
+
'A+',
|
|
676
|
+
'A',
|
|
677
|
+
'A-',
|
|
678
|
+
'B+',
|
|
679
|
+
'B',
|
|
680
|
+
'B-',
|
|
681
|
+
'C+',
|
|
682
|
+
'C',
|
|
683
|
+
'C-',
|
|
684
|
+
'D',
|
|
685
|
+
'F',
|
|
686
|
+
],
|
|
687
|
+
},
|
|
688
|
+
],
|
|
689
|
+
},
|
|
690
|
+
result: [
|
|
691
|
+
{
|
|
692
|
+
type: ['Result'],
|
|
693
|
+
value: 'A-',
|
|
694
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
695
|
+
},
|
|
696
|
+
],
|
|
697
|
+
creditsEarned: 3,
|
|
698
|
+
term: 'Fall 2022',
|
|
699
|
+
},
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
'@context': [
|
|
703
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
704
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
705
|
+
],
|
|
706
|
+
id: 'urn:uuid:wb-comm201',
|
|
707
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
708
|
+
name: 'COMM 201 — Technical Communication for Scientists',
|
|
709
|
+
issuer: {
|
|
710
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
711
|
+
type: ['Profile'],
|
|
712
|
+
name: 'Westbridge University',
|
|
713
|
+
},
|
|
714
|
+
validFrom: '2022-12-14T00:00:00Z',
|
|
715
|
+
credentialSubject: {
|
|
716
|
+
id: 'did:example:wb-student-2025-001',
|
|
717
|
+
type: ['AchievementSubject'],
|
|
718
|
+
achievement: {
|
|
719
|
+
id: 'https://westbridge.edu/courses/comm201',
|
|
720
|
+
type: ['Achievement'],
|
|
721
|
+
achievementType: 'Course',
|
|
722
|
+
name: 'Technical Communication for Scientists',
|
|
723
|
+
description:
|
|
724
|
+
'Scientific writing, data storytelling, report structure, visualization critique, and oral presentation skills for technical audiences.',
|
|
725
|
+
humanCode: 'COMM 201',
|
|
726
|
+
fieldOfStudy: 'Communications',
|
|
727
|
+
inLanguage: 'en',
|
|
728
|
+
tag: ['writing', 'communication', 'presentation'],
|
|
729
|
+
creator: {
|
|
730
|
+
id: 'https://westbridge.edu/departments/communications',
|
|
731
|
+
type: ['Profile'],
|
|
732
|
+
name: 'Department of Communications and Media',
|
|
733
|
+
},
|
|
734
|
+
resultDescription: [
|
|
735
|
+
{
|
|
736
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
737
|
+
type: ['ResultDescription'],
|
|
738
|
+
name: 'Letter Grade',
|
|
739
|
+
resultType: 'LetterGrade',
|
|
740
|
+
allowedValue: [
|
|
741
|
+
'A+',
|
|
742
|
+
'A',
|
|
743
|
+
'A-',
|
|
744
|
+
'B+',
|
|
745
|
+
'B',
|
|
746
|
+
'B-',
|
|
747
|
+
'C+',
|
|
748
|
+
'C',
|
|
749
|
+
'C-',
|
|
750
|
+
'D',
|
|
751
|
+
'F',
|
|
752
|
+
],
|
|
753
|
+
},
|
|
754
|
+
],
|
|
755
|
+
},
|
|
756
|
+
result: [
|
|
757
|
+
{
|
|
758
|
+
type: ['Result'],
|
|
759
|
+
value: 'A',
|
|
760
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
761
|
+
},
|
|
762
|
+
],
|
|
763
|
+
creditsEarned: 2,
|
|
764
|
+
term: 'Fall 2022',
|
|
765
|
+
},
|
|
766
|
+
},
|
|
767
|
+
|
|
768
|
+
// ── YEAR 2 · SPRING 2023 ──────────────────────────────────────────
|
|
769
|
+
{
|
|
770
|
+
'@context': [
|
|
771
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
772
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
773
|
+
],
|
|
774
|
+
id: 'urn:uuid:wb-ds211',
|
|
775
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
776
|
+
name: 'DS 211 — Statistical Modeling',
|
|
777
|
+
issuer: {
|
|
778
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
779
|
+
type: ['Profile'],
|
|
780
|
+
name: 'Westbridge University',
|
|
781
|
+
},
|
|
782
|
+
validFrom: '2023-05-09T00:00:00Z',
|
|
783
|
+
credentialSubject: {
|
|
784
|
+
id: 'did:example:wb-student-2025-001',
|
|
785
|
+
type: ['AchievementSubject'],
|
|
786
|
+
achievement: {
|
|
787
|
+
id: 'https://westbridge.edu/courses/ds211',
|
|
788
|
+
type: ['Achievement'],
|
|
789
|
+
achievementType: 'Course',
|
|
790
|
+
name: 'Statistical Modeling',
|
|
791
|
+
description:
|
|
792
|
+
'Generalized linear models, regularization, time-series analysis, survival analysis, and model diagnostics.',
|
|
793
|
+
humanCode: 'DS 211',
|
|
794
|
+
fieldOfStudy: 'Data Science',
|
|
795
|
+
inLanguage: 'en',
|
|
796
|
+
tag: ['modeling', 'statistics', 'regression'],
|
|
797
|
+
creator: {
|
|
798
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
799
|
+
type: ['Profile'],
|
|
800
|
+
name: 'Department of Data Science',
|
|
801
|
+
},
|
|
802
|
+
resultDescription: [
|
|
803
|
+
{
|
|
804
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
805
|
+
type: ['ResultDescription'],
|
|
806
|
+
name: 'Letter Grade',
|
|
807
|
+
resultType: 'LetterGrade',
|
|
808
|
+
allowedValue: [
|
|
809
|
+
'A+',
|
|
810
|
+
'A',
|
|
811
|
+
'A-',
|
|
812
|
+
'B+',
|
|
813
|
+
'B',
|
|
814
|
+
'B-',
|
|
815
|
+
'C+',
|
|
816
|
+
'C',
|
|
817
|
+
'C-',
|
|
818
|
+
'D',
|
|
819
|
+
'F',
|
|
820
|
+
],
|
|
821
|
+
},
|
|
822
|
+
],
|
|
823
|
+
},
|
|
824
|
+
result: [
|
|
825
|
+
{
|
|
826
|
+
type: ['Result'],
|
|
827
|
+
value: 'A',
|
|
828
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
829
|
+
},
|
|
830
|
+
],
|
|
831
|
+
creditsEarned: 3,
|
|
832
|
+
term: 'Spring 2023',
|
|
833
|
+
},
|
|
834
|
+
},
|
|
835
|
+
{
|
|
836
|
+
'@context': [
|
|
837
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
838
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
839
|
+
],
|
|
840
|
+
id: 'urn:uuid:wb-cs310',
|
|
841
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
842
|
+
name: 'CS 310 — Database Systems',
|
|
843
|
+
issuer: {
|
|
844
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
845
|
+
type: ['Profile'],
|
|
846
|
+
name: 'Westbridge University',
|
|
847
|
+
},
|
|
848
|
+
validFrom: '2023-05-09T00:00:00Z',
|
|
849
|
+
credentialSubject: {
|
|
850
|
+
id: 'did:example:wb-student-2025-001',
|
|
851
|
+
type: ['AchievementSubject'],
|
|
852
|
+
achievement: {
|
|
853
|
+
id: 'https://westbridge.edu/courses/cs310',
|
|
854
|
+
type: ['Achievement'],
|
|
855
|
+
achievementType: 'Course',
|
|
856
|
+
name: 'Database Systems',
|
|
857
|
+
description:
|
|
858
|
+
'Relational model, SQL, query optimization, transactions, NoSQL databases, and data warehousing patterns for analytics.',
|
|
859
|
+
humanCode: 'CS 310',
|
|
860
|
+
fieldOfStudy: 'Computer Science',
|
|
861
|
+
inLanguage: 'en',
|
|
862
|
+
tag: ['sql', 'databases', 'nosql'],
|
|
863
|
+
creator: {
|
|
864
|
+
id: 'https://westbridge.edu/departments/computer-science',
|
|
865
|
+
type: ['Profile'],
|
|
866
|
+
name: 'Department of Computer Science',
|
|
867
|
+
},
|
|
868
|
+
resultDescription: [
|
|
869
|
+
{
|
|
870
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
871
|
+
type: ['ResultDescription'],
|
|
872
|
+
name: 'Letter Grade',
|
|
873
|
+
resultType: 'LetterGrade',
|
|
874
|
+
allowedValue: [
|
|
875
|
+
'A+',
|
|
876
|
+
'A',
|
|
877
|
+
'A-',
|
|
878
|
+
'B+',
|
|
879
|
+
'B',
|
|
880
|
+
'B-',
|
|
881
|
+
'C+',
|
|
882
|
+
'C',
|
|
883
|
+
'C-',
|
|
884
|
+
'D',
|
|
885
|
+
'F',
|
|
886
|
+
],
|
|
887
|
+
},
|
|
888
|
+
],
|
|
889
|
+
},
|
|
890
|
+
result: [
|
|
891
|
+
{
|
|
892
|
+
type: ['Result'],
|
|
893
|
+
value: 'A-',
|
|
894
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
895
|
+
},
|
|
896
|
+
],
|
|
897
|
+
creditsEarned: 3,
|
|
898
|
+
term: 'Spring 2023',
|
|
899
|
+
},
|
|
900
|
+
},
|
|
901
|
+
{
|
|
902
|
+
'@context': [
|
|
903
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
904
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
905
|
+
],
|
|
906
|
+
id: 'urn:uuid:wb-econ201',
|
|
907
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
908
|
+
name: 'ECON 201 — Econometrics',
|
|
909
|
+
issuer: {
|
|
910
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
911
|
+
type: ['Profile'],
|
|
912
|
+
name: 'Westbridge University',
|
|
913
|
+
},
|
|
914
|
+
validFrom: '2023-05-09T00:00:00Z',
|
|
915
|
+
credentialSubject: {
|
|
916
|
+
id: 'did:example:wb-student-2025-001',
|
|
917
|
+
type: ['AchievementSubject'],
|
|
918
|
+
achievement: {
|
|
919
|
+
id: 'https://westbridge.edu/courses/econ201',
|
|
920
|
+
type: ['Achievement'],
|
|
921
|
+
achievementType: 'Course',
|
|
922
|
+
name: 'Econometrics',
|
|
923
|
+
description:
|
|
924
|
+
'Causal inference, instrumental variables, difference-in-differences, panel data models, and applied regression in economic contexts.',
|
|
925
|
+
humanCode: 'ECON 201',
|
|
926
|
+
fieldOfStudy: 'Economics',
|
|
927
|
+
inLanguage: 'en',
|
|
928
|
+
tag: ['causal-inference', 'economics', 'regression'],
|
|
929
|
+
creator: {
|
|
930
|
+
id: 'https://westbridge.edu/departments/economics',
|
|
931
|
+
type: ['Profile'],
|
|
932
|
+
name: 'Department of Economics',
|
|
933
|
+
},
|
|
934
|
+
resultDescription: [
|
|
935
|
+
{
|
|
936
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
937
|
+
type: ['ResultDescription'],
|
|
938
|
+
name: 'Letter Grade',
|
|
939
|
+
resultType: 'LetterGrade',
|
|
940
|
+
allowedValue: [
|
|
941
|
+
'A+',
|
|
942
|
+
'A',
|
|
943
|
+
'A-',
|
|
944
|
+
'B+',
|
|
945
|
+
'B',
|
|
946
|
+
'B-',
|
|
947
|
+
'C+',
|
|
948
|
+
'C',
|
|
949
|
+
'C-',
|
|
950
|
+
'D',
|
|
951
|
+
'F',
|
|
952
|
+
],
|
|
953
|
+
},
|
|
954
|
+
],
|
|
955
|
+
},
|
|
956
|
+
result: [
|
|
957
|
+
{
|
|
958
|
+
type: ['Result'],
|
|
959
|
+
value: 'B+',
|
|
960
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
961
|
+
},
|
|
962
|
+
],
|
|
963
|
+
creditsEarned: 3,
|
|
964
|
+
term: 'Spring 2023',
|
|
965
|
+
},
|
|
966
|
+
},
|
|
967
|
+
|
|
968
|
+
// ── YEAR 3 · FALL 2023 ────────────────────────────────────────────
|
|
969
|
+
{
|
|
970
|
+
'@context': [
|
|
971
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
972
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
973
|
+
],
|
|
974
|
+
id: 'urn:uuid:wb-ds301',
|
|
975
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
976
|
+
name: 'DS 301 — Deep Learning',
|
|
977
|
+
issuer: {
|
|
978
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
979
|
+
type: ['Profile'],
|
|
980
|
+
name: 'Westbridge University',
|
|
981
|
+
},
|
|
982
|
+
validFrom: '2023-12-13T00:00:00Z',
|
|
983
|
+
credentialSubject: {
|
|
984
|
+
id: 'did:example:wb-student-2025-001',
|
|
985
|
+
type: ['AchievementSubject'],
|
|
986
|
+
achievement: {
|
|
987
|
+
id: 'https://westbridge.edu/courses/ds301',
|
|
988
|
+
type: ['Achievement'],
|
|
989
|
+
achievementType: 'Course',
|
|
990
|
+
name: 'Deep Learning',
|
|
991
|
+
description:
|
|
992
|
+
'Neural network architectures, backpropagation, CNNs, RNNs, transformers, and training at scale using PyTorch.',
|
|
993
|
+
humanCode: 'DS 301',
|
|
994
|
+
fieldOfStudy: 'Data Science',
|
|
995
|
+
inLanguage: 'en',
|
|
996
|
+
tag: ['deep-learning', 'pytorch', 'neural-networks'],
|
|
997
|
+
creator: {
|
|
998
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
999
|
+
type: ['Profile'],
|
|
1000
|
+
name: 'Department of Data Science',
|
|
1001
|
+
},
|
|
1002
|
+
alignment: [
|
|
1003
|
+
{
|
|
1004
|
+
type: ['Alignment'],
|
|
1005
|
+
targetCode: 'DS.ML.3',
|
|
1006
|
+
targetName: 'Deep Learning Practice',
|
|
1007
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
1008
|
+
targetType: 'CFItem',
|
|
1009
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/ML.3',
|
|
1010
|
+
targetDescription:
|
|
1011
|
+
'Designs, trains, and evaluates deep neural network models for real-world tasks.',
|
|
1012
|
+
},
|
|
1013
|
+
],
|
|
1014
|
+
resultDescription: [
|
|
1015
|
+
{
|
|
1016
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1017
|
+
type: ['ResultDescription'],
|
|
1018
|
+
name: 'Letter Grade',
|
|
1019
|
+
resultType: 'LetterGrade',
|
|
1020
|
+
allowedValue: [
|
|
1021
|
+
'A+',
|
|
1022
|
+
'A',
|
|
1023
|
+
'A-',
|
|
1024
|
+
'B+',
|
|
1025
|
+
'B',
|
|
1026
|
+
'B-',
|
|
1027
|
+
'C+',
|
|
1028
|
+
'C',
|
|
1029
|
+
'C-',
|
|
1030
|
+
'D',
|
|
1031
|
+
'F',
|
|
1032
|
+
],
|
|
1033
|
+
},
|
|
1034
|
+
],
|
|
1035
|
+
},
|
|
1036
|
+
result: [
|
|
1037
|
+
{
|
|
1038
|
+
type: ['Result'],
|
|
1039
|
+
value: 'A',
|
|
1040
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1041
|
+
},
|
|
1042
|
+
],
|
|
1043
|
+
creditsEarned: 3,
|
|
1044
|
+
term: 'Fall 2023',
|
|
1045
|
+
},
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
'@context': [
|
|
1049
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1050
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1051
|
+
],
|
|
1052
|
+
id: 'urn:uuid:wb-ds310',
|
|
1053
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1054
|
+
name: 'DS 310 — Natural Language Processing',
|
|
1055
|
+
issuer: {
|
|
1056
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1057
|
+
type: ['Profile'],
|
|
1058
|
+
name: 'Westbridge University',
|
|
1059
|
+
},
|
|
1060
|
+
validFrom: '2023-12-13T00:00:00Z',
|
|
1061
|
+
credentialSubject: {
|
|
1062
|
+
id: 'did:example:wb-student-2025-001',
|
|
1063
|
+
type: ['AchievementSubject'],
|
|
1064
|
+
achievement: {
|
|
1065
|
+
id: 'https://westbridge.edu/courses/ds310',
|
|
1066
|
+
type: ['Achievement'],
|
|
1067
|
+
achievementType: 'Course',
|
|
1068
|
+
name: 'Natural Language Processing',
|
|
1069
|
+
description:
|
|
1070
|
+
'Text preprocessing, word embeddings, sequence models, attention mechanisms, and pre-trained language model fine-tuning.',
|
|
1071
|
+
humanCode: 'DS 310',
|
|
1072
|
+
fieldOfStudy: 'Data Science',
|
|
1073
|
+
inLanguage: 'en',
|
|
1074
|
+
tag: ['nlp', 'transformers', 'llm'],
|
|
1075
|
+
creator: {
|
|
1076
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1077
|
+
type: ['Profile'],
|
|
1078
|
+
name: 'Department of Data Science',
|
|
1079
|
+
},
|
|
1080
|
+
resultDescription: [
|
|
1081
|
+
{
|
|
1082
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1083
|
+
type: ['ResultDescription'],
|
|
1084
|
+
name: 'Letter Grade',
|
|
1085
|
+
resultType: 'LetterGrade',
|
|
1086
|
+
allowedValue: [
|
|
1087
|
+
'A+',
|
|
1088
|
+
'A',
|
|
1089
|
+
'A-',
|
|
1090
|
+
'B+',
|
|
1091
|
+
'B',
|
|
1092
|
+
'B-',
|
|
1093
|
+
'C+',
|
|
1094
|
+
'C',
|
|
1095
|
+
'C-',
|
|
1096
|
+
'D',
|
|
1097
|
+
'F',
|
|
1098
|
+
],
|
|
1099
|
+
},
|
|
1100
|
+
],
|
|
1101
|
+
},
|
|
1102
|
+
result: [
|
|
1103
|
+
{
|
|
1104
|
+
type: ['Result'],
|
|
1105
|
+
value: 'A',
|
|
1106
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1107
|
+
},
|
|
1108
|
+
],
|
|
1109
|
+
creditsEarned: 3,
|
|
1110
|
+
term: 'Fall 2023',
|
|
1111
|
+
},
|
|
1112
|
+
},
|
|
1113
|
+
{
|
|
1114
|
+
'@context': [
|
|
1115
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1116
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1117
|
+
],
|
|
1118
|
+
id: 'urn:uuid:wb-phil310',
|
|
1119
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1120
|
+
name: 'PHIL 310 — Ethics in Artificial Intelligence',
|
|
1121
|
+
issuer: {
|
|
1122
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1123
|
+
type: ['Profile'],
|
|
1124
|
+
name: 'Westbridge University',
|
|
1125
|
+
},
|
|
1126
|
+
validFrom: '2023-12-13T00:00:00Z',
|
|
1127
|
+
credentialSubject: {
|
|
1128
|
+
id: 'did:example:wb-student-2025-001',
|
|
1129
|
+
type: ['AchievementSubject'],
|
|
1130
|
+
achievement: {
|
|
1131
|
+
id: 'https://westbridge.edu/courses/phil310',
|
|
1132
|
+
type: ['Achievement'],
|
|
1133
|
+
achievementType: 'Course',
|
|
1134
|
+
name: 'Ethics in Artificial Intelligence',
|
|
1135
|
+
description:
|
|
1136
|
+
'Algorithmic bias, fairness, transparency, accountability, privacy, and the societal implications of automated decision-making.',
|
|
1137
|
+
humanCode: 'PHIL 310',
|
|
1138
|
+
fieldOfStudy: 'Philosophy',
|
|
1139
|
+
inLanguage: 'en',
|
|
1140
|
+
tag: ['ethics', 'ai', 'fairness'],
|
|
1141
|
+
creator: {
|
|
1142
|
+
id: 'https://westbridge.edu/departments/philosophy',
|
|
1143
|
+
type: ['Profile'],
|
|
1144
|
+
name: 'Department of Philosophy',
|
|
1145
|
+
},
|
|
1146
|
+
alignment: [
|
|
1147
|
+
{
|
|
1148
|
+
type: ['Alignment'],
|
|
1149
|
+
targetCode: 'DS.ETHICS.1',
|
|
1150
|
+
targetName: 'Responsible AI',
|
|
1151
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
1152
|
+
targetType: 'CFItem',
|
|
1153
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/ETHICS.1',
|
|
1154
|
+
targetDescription:
|
|
1155
|
+
'Evaluates AI systems for bias, fairness, and ethical risk.',
|
|
1156
|
+
},
|
|
1157
|
+
],
|
|
1158
|
+
resultDescription: [
|
|
1159
|
+
{
|
|
1160
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1161
|
+
type: ['ResultDescription'],
|
|
1162
|
+
name: 'Letter Grade',
|
|
1163
|
+
resultType: 'LetterGrade',
|
|
1164
|
+
allowedValue: [
|
|
1165
|
+
'A+',
|
|
1166
|
+
'A',
|
|
1167
|
+
'A-',
|
|
1168
|
+
'B+',
|
|
1169
|
+
'B',
|
|
1170
|
+
'B-',
|
|
1171
|
+
'C+',
|
|
1172
|
+
'C',
|
|
1173
|
+
'C-',
|
|
1174
|
+
'D',
|
|
1175
|
+
'F',
|
|
1176
|
+
],
|
|
1177
|
+
},
|
|
1178
|
+
],
|
|
1179
|
+
},
|
|
1180
|
+
result: [
|
|
1181
|
+
{
|
|
1182
|
+
type: ['Result'],
|
|
1183
|
+
value: 'A',
|
|
1184
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1185
|
+
},
|
|
1186
|
+
],
|
|
1187
|
+
creditsEarned: 3,
|
|
1188
|
+
term: 'Fall 2023',
|
|
1189
|
+
},
|
|
1190
|
+
},
|
|
1191
|
+
|
|
1192
|
+
// ── YEAR 3 · SPRING 2024 ──────────────────────────────────────────
|
|
1193
|
+
{
|
|
1194
|
+
'@context': [
|
|
1195
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1196
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1197
|
+
],
|
|
1198
|
+
id: 'urn:uuid:wb-ds311',
|
|
1199
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1200
|
+
name: 'DS 311 — Computer Vision',
|
|
1201
|
+
issuer: {
|
|
1202
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1203
|
+
type: ['Profile'],
|
|
1204
|
+
name: 'Westbridge University',
|
|
1205
|
+
},
|
|
1206
|
+
validFrom: '2024-05-07T00:00:00Z',
|
|
1207
|
+
credentialSubject: {
|
|
1208
|
+
id: 'did:example:wb-student-2025-001',
|
|
1209
|
+
type: ['AchievementSubject'],
|
|
1210
|
+
achievement: {
|
|
1211
|
+
id: 'https://westbridge.edu/courses/ds311',
|
|
1212
|
+
type: ['Achievement'],
|
|
1213
|
+
achievementType: 'Course',
|
|
1214
|
+
name: 'Computer Vision',
|
|
1215
|
+
description:
|
|
1216
|
+
'Image classification, object detection, semantic segmentation, and generative models using convolutional and vision transformer architectures.',
|
|
1217
|
+
humanCode: 'DS 311',
|
|
1218
|
+
fieldOfStudy: 'Data Science',
|
|
1219
|
+
inLanguage: 'en',
|
|
1220
|
+
tag: ['computer-vision', 'cnn', 'vit'],
|
|
1221
|
+
creator: {
|
|
1222
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1223
|
+
type: ['Profile'],
|
|
1224
|
+
name: 'Department of Data Science',
|
|
1225
|
+
},
|
|
1226
|
+
resultDescription: [
|
|
1227
|
+
{
|
|
1228
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1229
|
+
type: ['ResultDescription'],
|
|
1230
|
+
name: 'Letter Grade',
|
|
1231
|
+
resultType: 'LetterGrade',
|
|
1232
|
+
allowedValue: [
|
|
1233
|
+
'A+',
|
|
1234
|
+
'A',
|
|
1235
|
+
'A-',
|
|
1236
|
+
'B+',
|
|
1237
|
+
'B',
|
|
1238
|
+
'B-',
|
|
1239
|
+
'C+',
|
|
1240
|
+
'C',
|
|
1241
|
+
'C-',
|
|
1242
|
+
'D',
|
|
1243
|
+
'F',
|
|
1244
|
+
],
|
|
1245
|
+
},
|
|
1246
|
+
],
|
|
1247
|
+
},
|
|
1248
|
+
result: [
|
|
1249
|
+
{
|
|
1250
|
+
type: ['Result'],
|
|
1251
|
+
value: 'A',
|
|
1252
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1253
|
+
},
|
|
1254
|
+
],
|
|
1255
|
+
creditsEarned: 3,
|
|
1256
|
+
term: 'Spring 2024',
|
|
1257
|
+
},
|
|
1258
|
+
},
|
|
1259
|
+
{
|
|
1260
|
+
'@context': [
|
|
1261
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1262
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1263
|
+
],
|
|
1264
|
+
id: 'urn:uuid:wb-ds320',
|
|
1265
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1266
|
+
name: 'DS 320 — Big Data Engineering',
|
|
1267
|
+
issuer: {
|
|
1268
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1269
|
+
type: ['Profile'],
|
|
1270
|
+
name: 'Westbridge University',
|
|
1271
|
+
},
|
|
1272
|
+
validFrom: '2024-05-07T00:00:00Z',
|
|
1273
|
+
credentialSubject: {
|
|
1274
|
+
id: 'did:example:wb-student-2025-001',
|
|
1275
|
+
type: ['AchievementSubject'],
|
|
1276
|
+
achievement: {
|
|
1277
|
+
id: 'https://westbridge.edu/courses/ds320',
|
|
1278
|
+
type: ['Achievement'],
|
|
1279
|
+
achievementType: 'Course',
|
|
1280
|
+
name: 'Big Data Engineering',
|
|
1281
|
+
description:
|
|
1282
|
+
'Distributed computing with Spark, streaming data pipelines with Kafka, data lake architectures, and cloud-native processing on AWS and GCP.',
|
|
1283
|
+
humanCode: 'DS 320',
|
|
1284
|
+
fieldOfStudy: 'Data Science',
|
|
1285
|
+
inLanguage: 'en',
|
|
1286
|
+
tag: ['spark', 'kafka', 'cloud', 'distributed'],
|
|
1287
|
+
creator: {
|
|
1288
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1289
|
+
type: ['Profile'],
|
|
1290
|
+
name: 'Department of Data Science',
|
|
1291
|
+
},
|
|
1292
|
+
resultDescription: [
|
|
1293
|
+
{
|
|
1294
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1295
|
+
type: ['ResultDescription'],
|
|
1296
|
+
name: 'Letter Grade',
|
|
1297
|
+
resultType: 'LetterGrade',
|
|
1298
|
+
allowedValue: [
|
|
1299
|
+
'A+',
|
|
1300
|
+
'A',
|
|
1301
|
+
'A-',
|
|
1302
|
+
'B+',
|
|
1303
|
+
'B',
|
|
1304
|
+
'B-',
|
|
1305
|
+
'C+',
|
|
1306
|
+
'C',
|
|
1307
|
+
'C-',
|
|
1308
|
+
'D',
|
|
1309
|
+
'F',
|
|
1310
|
+
],
|
|
1311
|
+
},
|
|
1312
|
+
],
|
|
1313
|
+
},
|
|
1314
|
+
result: [
|
|
1315
|
+
{
|
|
1316
|
+
type: ['Result'],
|
|
1317
|
+
value: 'A-',
|
|
1318
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1319
|
+
},
|
|
1320
|
+
],
|
|
1321
|
+
creditsEarned: 3,
|
|
1322
|
+
term: 'Spring 2024',
|
|
1323
|
+
},
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
'@context': [
|
|
1327
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1328
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1329
|
+
],
|
|
1330
|
+
id: 'urn:uuid:wb-stat401',
|
|
1331
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1332
|
+
name: 'STAT 401 — Bayesian Statistics',
|
|
1333
|
+
issuer: {
|
|
1334
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1335
|
+
type: ['Profile'],
|
|
1336
|
+
name: 'Westbridge University',
|
|
1337
|
+
},
|
|
1338
|
+
validFrom: '2024-05-07T00:00:00Z',
|
|
1339
|
+
credentialSubject: {
|
|
1340
|
+
id: 'did:example:wb-student-2025-001',
|
|
1341
|
+
type: ['AchievementSubject'],
|
|
1342
|
+
achievement: {
|
|
1343
|
+
id: 'https://westbridge.edu/courses/stat401',
|
|
1344
|
+
type: ['Achievement'],
|
|
1345
|
+
achievementType: 'Course',
|
|
1346
|
+
name: 'Bayesian Statistics',
|
|
1347
|
+
description:
|
|
1348
|
+
'Bayesian inference, prior and posterior distributions, MCMC sampling, hierarchical models, and probabilistic programming with Stan.',
|
|
1349
|
+
humanCode: 'STAT 401',
|
|
1350
|
+
fieldOfStudy: 'Statistics',
|
|
1351
|
+
inLanguage: 'en',
|
|
1352
|
+
tag: ['bayesian', 'mcmc', 'statistics'],
|
|
1353
|
+
creator: {
|
|
1354
|
+
id: 'https://westbridge.edu/departments/statistics',
|
|
1355
|
+
type: ['Profile'],
|
|
1356
|
+
name: 'Department of Statistics and Applied Mathematics',
|
|
1357
|
+
},
|
|
1358
|
+
resultDescription: [
|
|
1359
|
+
{
|
|
1360
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1361
|
+
type: ['ResultDescription'],
|
|
1362
|
+
name: 'Letter Grade',
|
|
1363
|
+
resultType: 'LetterGrade',
|
|
1364
|
+
allowedValue: [
|
|
1365
|
+
'A+',
|
|
1366
|
+
'A',
|
|
1367
|
+
'A-',
|
|
1368
|
+
'B+',
|
|
1369
|
+
'B',
|
|
1370
|
+
'B-',
|
|
1371
|
+
'C+',
|
|
1372
|
+
'C',
|
|
1373
|
+
'C-',
|
|
1374
|
+
'D',
|
|
1375
|
+
'F',
|
|
1376
|
+
],
|
|
1377
|
+
},
|
|
1378
|
+
],
|
|
1379
|
+
},
|
|
1380
|
+
result: [
|
|
1381
|
+
{
|
|
1382
|
+
type: ['Result'],
|
|
1383
|
+
value: 'A',
|
|
1384
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1385
|
+
},
|
|
1386
|
+
],
|
|
1387
|
+
creditsEarned: 3,
|
|
1388
|
+
term: 'Spring 2024',
|
|
1389
|
+
},
|
|
1390
|
+
},
|
|
1391
|
+
|
|
1392
|
+
// ── YEAR 4 · FALL 2024 ────────────────────────────────────────────
|
|
1393
|
+
{
|
|
1394
|
+
'@context': [
|
|
1395
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1396
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1397
|
+
],
|
|
1398
|
+
id: 'urn:uuid:wb-ds401',
|
|
1399
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1400
|
+
name: 'DS 401 — Advanced Topics in AI',
|
|
1401
|
+
issuer: {
|
|
1402
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1403
|
+
type: ['Profile'],
|
|
1404
|
+
name: 'Westbridge University',
|
|
1405
|
+
},
|
|
1406
|
+
validFrom: '2024-12-11T00:00:00Z',
|
|
1407
|
+
credentialSubject: {
|
|
1408
|
+
id: 'did:example:wb-student-2025-001',
|
|
1409
|
+
type: ['AchievementSubject'],
|
|
1410
|
+
achievement: {
|
|
1411
|
+
id: 'https://westbridge.edu/courses/ds401',
|
|
1412
|
+
type: ['Achievement'],
|
|
1413
|
+
achievementType: 'Course',
|
|
1414
|
+
name: 'Advanced Topics in AI',
|
|
1415
|
+
description:
|
|
1416
|
+
'Reinforcement learning, multi-agent systems, causal ML, and emerging research directions in large-scale foundation models.',
|
|
1417
|
+
humanCode: 'DS 401',
|
|
1418
|
+
fieldOfStudy: 'Data Science',
|
|
1419
|
+
inLanguage: 'en',
|
|
1420
|
+
tag: ['reinforcement-learning', 'causal-ml', 'research'],
|
|
1421
|
+
creator: {
|
|
1422
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1423
|
+
type: ['Profile'],
|
|
1424
|
+
name: 'Department of Data Science',
|
|
1425
|
+
},
|
|
1426
|
+
resultDescription: [
|
|
1427
|
+
{
|
|
1428
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1429
|
+
type: ['ResultDescription'],
|
|
1430
|
+
name: 'Letter Grade',
|
|
1431
|
+
resultType: 'LetterGrade',
|
|
1432
|
+
allowedValue: [
|
|
1433
|
+
'A+',
|
|
1434
|
+
'A',
|
|
1435
|
+
'A-',
|
|
1436
|
+
'B+',
|
|
1437
|
+
'B',
|
|
1438
|
+
'B-',
|
|
1439
|
+
'C+',
|
|
1440
|
+
'C',
|
|
1441
|
+
'C-',
|
|
1442
|
+
'D',
|
|
1443
|
+
'F',
|
|
1444
|
+
],
|
|
1445
|
+
},
|
|
1446
|
+
],
|
|
1447
|
+
},
|
|
1448
|
+
result: [
|
|
1449
|
+
{
|
|
1450
|
+
type: ['Result'],
|
|
1451
|
+
value: 'A',
|
|
1452
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1453
|
+
},
|
|
1454
|
+
],
|
|
1455
|
+
creditsEarned: 3,
|
|
1456
|
+
term: 'Fall 2024',
|
|
1457
|
+
},
|
|
1458
|
+
},
|
|
1459
|
+
{
|
|
1460
|
+
'@context': [
|
|
1461
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1462
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1463
|
+
],
|
|
1464
|
+
id: 'urn:uuid:wb-ds410',
|
|
1465
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1466
|
+
name: 'DS 410 — MLOps and Production Systems',
|
|
1467
|
+
issuer: {
|
|
1468
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1469
|
+
type: ['Profile'],
|
|
1470
|
+
name: 'Westbridge University',
|
|
1471
|
+
},
|
|
1472
|
+
validFrom: '2024-12-11T00:00:00Z',
|
|
1473
|
+
credentialSubject: {
|
|
1474
|
+
id: 'did:example:wb-student-2025-001',
|
|
1475
|
+
type: ['AchievementSubject'],
|
|
1476
|
+
achievement: {
|
|
1477
|
+
id: 'https://westbridge.edu/courses/ds410',
|
|
1478
|
+
type: ['Achievement'],
|
|
1479
|
+
achievementType: 'Course',
|
|
1480
|
+
name: 'MLOps and Production Systems',
|
|
1481
|
+
description:
|
|
1482
|
+
'Model versioning, experiment tracking, CI/CD for ML, monitoring, drift detection, and responsible deployment practices.',
|
|
1483
|
+
humanCode: 'DS 410',
|
|
1484
|
+
fieldOfStudy: 'Data Science',
|
|
1485
|
+
inLanguage: 'en',
|
|
1486
|
+
tag: ['mlops', 'deployment', 'monitoring'],
|
|
1487
|
+
creator: {
|
|
1488
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1489
|
+
type: ['Profile'],
|
|
1490
|
+
name: 'Department of Data Science',
|
|
1491
|
+
},
|
|
1492
|
+
resultDescription: [
|
|
1493
|
+
{
|
|
1494
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1495
|
+
type: ['ResultDescription'],
|
|
1496
|
+
name: 'Letter Grade',
|
|
1497
|
+
resultType: 'LetterGrade',
|
|
1498
|
+
allowedValue: [
|
|
1499
|
+
'A+',
|
|
1500
|
+
'A',
|
|
1501
|
+
'A-',
|
|
1502
|
+
'B+',
|
|
1503
|
+
'B',
|
|
1504
|
+
'B-',
|
|
1505
|
+
'C+',
|
|
1506
|
+
'C',
|
|
1507
|
+
'C-',
|
|
1508
|
+
'D',
|
|
1509
|
+
'F',
|
|
1510
|
+
],
|
|
1511
|
+
},
|
|
1512
|
+
],
|
|
1513
|
+
},
|
|
1514
|
+
result: [
|
|
1515
|
+
{
|
|
1516
|
+
type: ['Result'],
|
|
1517
|
+
value: 'A-',
|
|
1518
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1519
|
+
},
|
|
1520
|
+
],
|
|
1521
|
+
creditsEarned: 3,
|
|
1522
|
+
term: 'Fall 2024',
|
|
1523
|
+
},
|
|
1524
|
+
},
|
|
1525
|
+
{
|
|
1526
|
+
'@context': [
|
|
1527
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1528
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1529
|
+
],
|
|
1530
|
+
id: 'urn:uuid:wb-ds420',
|
|
1531
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1532
|
+
name: 'DS 420 — Data Privacy and Security',
|
|
1533
|
+
issuer: {
|
|
1534
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1535
|
+
type: ['Profile'],
|
|
1536
|
+
name: 'Westbridge University',
|
|
1537
|
+
},
|
|
1538
|
+
validFrom: '2024-12-11T00:00:00Z',
|
|
1539
|
+
credentialSubject: {
|
|
1540
|
+
id: 'did:example:wb-student-2025-001',
|
|
1541
|
+
type: ['AchievementSubject'],
|
|
1542
|
+
achievement: {
|
|
1543
|
+
id: 'https://westbridge.edu/courses/ds420',
|
|
1544
|
+
type: ['Achievement'],
|
|
1545
|
+
achievementType: 'Course',
|
|
1546
|
+
name: 'Data Privacy and Security',
|
|
1547
|
+
description:
|
|
1548
|
+
'Differential privacy, federated learning, anonymization techniques, adversarial attacks, and regulatory compliance (GDPR, FERPA).',
|
|
1549
|
+
humanCode: 'DS 420',
|
|
1550
|
+
fieldOfStudy: 'Data Science',
|
|
1551
|
+
inLanguage: 'en',
|
|
1552
|
+
tag: ['privacy', 'security', 'differential-privacy'],
|
|
1553
|
+
creator: {
|
|
1554
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1555
|
+
type: ['Profile'],
|
|
1556
|
+
name: 'Department of Data Science',
|
|
1557
|
+
},
|
|
1558
|
+
resultDescription: [
|
|
1559
|
+
{
|
|
1560
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1561
|
+
type: ['ResultDescription'],
|
|
1562
|
+
name: 'Letter Grade',
|
|
1563
|
+
resultType: 'LetterGrade',
|
|
1564
|
+
allowedValue: [
|
|
1565
|
+
'A+',
|
|
1566
|
+
'A',
|
|
1567
|
+
'A-',
|
|
1568
|
+
'B+',
|
|
1569
|
+
'B',
|
|
1570
|
+
'B-',
|
|
1571
|
+
'C+',
|
|
1572
|
+
'C',
|
|
1573
|
+
'C-',
|
|
1574
|
+
'D',
|
|
1575
|
+
'F',
|
|
1576
|
+
],
|
|
1577
|
+
},
|
|
1578
|
+
],
|
|
1579
|
+
},
|
|
1580
|
+
result: [
|
|
1581
|
+
{
|
|
1582
|
+
type: ['Result'],
|
|
1583
|
+
value: 'A',
|
|
1584
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1585
|
+
},
|
|
1586
|
+
],
|
|
1587
|
+
creditsEarned: 3,
|
|
1588
|
+
term: 'Fall 2024',
|
|
1589
|
+
},
|
|
1590
|
+
},
|
|
1591
|
+
|
|
1592
|
+
// ── YEAR 4 · SPRING 2025 ──────────────────────────────────────────
|
|
1593
|
+
{
|
|
1594
|
+
'@context': [
|
|
1595
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1596
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1597
|
+
],
|
|
1598
|
+
id: 'urn:uuid:wb-ds490',
|
|
1599
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1600
|
+
name: 'DS 490 — Data Science Capstone',
|
|
1601
|
+
issuer: {
|
|
1602
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1603
|
+
type: ['Profile'],
|
|
1604
|
+
name: 'Westbridge University',
|
|
1605
|
+
},
|
|
1606
|
+
validFrom: '2025-05-07T00:00:00Z',
|
|
1607
|
+
evidence: [
|
|
1608
|
+
{
|
|
1609
|
+
id: 'https://westbridge.edu/capstone/2025/reyes-jordan-report.pdf',
|
|
1610
|
+
type: ['Evidence'],
|
|
1611
|
+
name: 'Capstone Final Report',
|
|
1612
|
+
description:
|
|
1613
|
+
'Full written report for DS 490 capstone project: "Equitable Predictive Models for Community Health Resource Allocation".',
|
|
1614
|
+
genre: 'Document',
|
|
1615
|
+
audience: 'Faculty, Industry Partner',
|
|
1616
|
+
},
|
|
1617
|
+
],
|
|
1618
|
+
credentialSubject: {
|
|
1619
|
+
id: 'did:example:wb-student-2025-001',
|
|
1620
|
+
type: ['AchievementSubject'],
|
|
1621
|
+
achievement: {
|
|
1622
|
+
id: 'https://westbridge.edu/courses/ds490',
|
|
1623
|
+
type: ['Achievement'],
|
|
1624
|
+
achievementType: 'Course',
|
|
1625
|
+
name: 'Data Science Capstone',
|
|
1626
|
+
description:
|
|
1627
|
+
'Year-long applied research project with an external partner. Students formulate a problem, collect and analyze data, and deliver a production-ready solution with full documentation.',
|
|
1628
|
+
humanCode: 'DS 490',
|
|
1629
|
+
fieldOfStudy: 'Data Science',
|
|
1630
|
+
inLanguage: 'en',
|
|
1631
|
+
tag: ['capstone', 'research', 'applied'],
|
|
1632
|
+
creator: {
|
|
1633
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1634
|
+
type: ['Profile'],
|
|
1635
|
+
name: 'Department of Data Science',
|
|
1636
|
+
},
|
|
1637
|
+
resultDescription: [
|
|
1638
|
+
{
|
|
1639
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1640
|
+
type: ['ResultDescription'],
|
|
1641
|
+
name: 'Letter Grade',
|
|
1642
|
+
resultType: 'LetterGrade',
|
|
1643
|
+
allowedValue: [
|
|
1644
|
+
'A+',
|
|
1645
|
+
'A',
|
|
1646
|
+
'A-',
|
|
1647
|
+
'B+',
|
|
1648
|
+
'B',
|
|
1649
|
+
'B-',
|
|
1650
|
+
'C+',
|
|
1651
|
+
'C',
|
|
1652
|
+
'C-',
|
|
1653
|
+
'D',
|
|
1654
|
+
'F',
|
|
1655
|
+
],
|
|
1656
|
+
},
|
|
1657
|
+
],
|
|
1658
|
+
},
|
|
1659
|
+
result: [
|
|
1660
|
+
{
|
|
1661
|
+
type: ['Result'],
|
|
1662
|
+
value: 'A+',
|
|
1663
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1664
|
+
},
|
|
1665
|
+
],
|
|
1666
|
+
creditsEarned: 6,
|
|
1667
|
+
term: 'Spring 2025',
|
|
1668
|
+
},
|
|
1669
|
+
},
|
|
1670
|
+
{
|
|
1671
|
+
'@context': [
|
|
1672
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1673
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1674
|
+
],
|
|
1675
|
+
id: 'urn:uuid:wb-ds450',
|
|
1676
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1677
|
+
name: 'DS 450 — Research Methods in Data Science',
|
|
1678
|
+
issuer: {
|
|
1679
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1680
|
+
type: ['Profile'],
|
|
1681
|
+
name: 'Westbridge University',
|
|
1682
|
+
},
|
|
1683
|
+
validFrom: '2025-05-07T00:00:00Z',
|
|
1684
|
+
credentialSubject: {
|
|
1685
|
+
id: 'did:example:wb-student-2025-001',
|
|
1686
|
+
type: ['AchievementSubject'],
|
|
1687
|
+
achievement: {
|
|
1688
|
+
id: 'https://westbridge.edu/courses/ds450',
|
|
1689
|
+
type: ['Achievement'],
|
|
1690
|
+
achievementType: 'Course',
|
|
1691
|
+
name: 'Research Methods in Data Science',
|
|
1692
|
+
description:
|
|
1693
|
+
'Experimental design, reproducible research workflows, literature review, IRB protocols, and dissemination of findings through papers and open-source code.',
|
|
1694
|
+
humanCode: 'DS 450',
|
|
1695
|
+
fieldOfStudy: 'Data Science',
|
|
1696
|
+
inLanguage: 'en',
|
|
1697
|
+
tag: ['research', 'reproducibility', 'methodology'],
|
|
1698
|
+
creator: {
|
|
1699
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1700
|
+
type: ['Profile'],
|
|
1701
|
+
name: 'Department of Data Science',
|
|
1702
|
+
},
|
|
1703
|
+
resultDescription: [
|
|
1704
|
+
{
|
|
1705
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1706
|
+
type: ['ResultDescription'],
|
|
1707
|
+
name: 'Letter Grade',
|
|
1708
|
+
resultType: 'LetterGrade',
|
|
1709
|
+
allowedValue: [
|
|
1710
|
+
'A+',
|
|
1711
|
+
'A',
|
|
1712
|
+
'A-',
|
|
1713
|
+
'B+',
|
|
1714
|
+
'B',
|
|
1715
|
+
'B-',
|
|
1716
|
+
'C+',
|
|
1717
|
+
'C',
|
|
1718
|
+
'C-',
|
|
1719
|
+
'D',
|
|
1720
|
+
'F',
|
|
1721
|
+
],
|
|
1722
|
+
},
|
|
1723
|
+
],
|
|
1724
|
+
},
|
|
1725
|
+
result: [
|
|
1726
|
+
{
|
|
1727
|
+
type: ['Result'],
|
|
1728
|
+
value: 'A',
|
|
1729
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1730
|
+
},
|
|
1731
|
+
],
|
|
1732
|
+
creditsEarned: 3,
|
|
1733
|
+
term: 'Spring 2025',
|
|
1734
|
+
},
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
'@context': [
|
|
1738
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1739
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1740
|
+
],
|
|
1741
|
+
id: 'urn:uuid:wb-ds460',
|
|
1742
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1743
|
+
name: 'DS 460 — Data Science for Social Impact',
|
|
1744
|
+
issuer: {
|
|
1745
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1746
|
+
type: ['Profile'],
|
|
1747
|
+
name: 'Westbridge University',
|
|
1748
|
+
},
|
|
1749
|
+
validFrom: '2025-05-07T00:00:00Z',
|
|
1750
|
+
credentialSubject: {
|
|
1751
|
+
id: 'did:example:wb-student-2025-001',
|
|
1752
|
+
type: ['AchievementSubject'],
|
|
1753
|
+
achievement: {
|
|
1754
|
+
id: 'https://westbridge.edu/courses/ds460',
|
|
1755
|
+
type: ['Achievement'],
|
|
1756
|
+
achievementType: 'Course',
|
|
1757
|
+
name: 'Data Science for Social Impact',
|
|
1758
|
+
description:
|
|
1759
|
+
'Applications of data science to public health, education, climate, and civic technology. Covers community-engaged research and responsible disclosure.',
|
|
1760
|
+
humanCode: 'DS 460',
|
|
1761
|
+
fieldOfStudy: 'Data Science',
|
|
1762
|
+
inLanguage: 'en',
|
|
1763
|
+
tag: ['social-impact', 'public-health', 'civic-tech'],
|
|
1764
|
+
creator: {
|
|
1765
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1766
|
+
type: ['Profile'],
|
|
1767
|
+
name: 'Department of Data Science',
|
|
1768
|
+
},
|
|
1769
|
+
resultDescription: [
|
|
1770
|
+
{
|
|
1771
|
+
id: 'urn:uuid:wb-rd-letter',
|
|
1772
|
+
type: ['ResultDescription'],
|
|
1773
|
+
name: 'Letter Grade',
|
|
1774
|
+
resultType: 'LetterGrade',
|
|
1775
|
+
allowedValue: [
|
|
1776
|
+
'A+',
|
|
1777
|
+
'A',
|
|
1778
|
+
'A-',
|
|
1779
|
+
'B+',
|
|
1780
|
+
'B',
|
|
1781
|
+
'B-',
|
|
1782
|
+
'C+',
|
|
1783
|
+
'C',
|
|
1784
|
+
'C-',
|
|
1785
|
+
'D',
|
|
1786
|
+
'F',
|
|
1787
|
+
],
|
|
1788
|
+
},
|
|
1789
|
+
],
|
|
1790
|
+
},
|
|
1791
|
+
result: [
|
|
1792
|
+
{
|
|
1793
|
+
type: ['Result'],
|
|
1794
|
+
value: 'A',
|
|
1795
|
+
resultDescription: 'urn:uuid:wb-rd-letter',
|
|
1796
|
+
},
|
|
1797
|
+
],
|
|
1798
|
+
creditsEarned: 3,
|
|
1799
|
+
term: 'Spring 2025',
|
|
1800
|
+
},
|
|
1801
|
+
},
|
|
1802
|
+
|
|
1803
|
+
// ── DEGREE ────────────────────────────────────────────────────────
|
|
1804
|
+
{
|
|
1805
|
+
'@context': [
|
|
1806
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1807
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1808
|
+
],
|
|
1809
|
+
id: 'urn:uuid:wb-degree-001',
|
|
1810
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1811
|
+
name: 'Bachelor of Science in Data Science',
|
|
1812
|
+
issuer: {
|
|
1813
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1814
|
+
type: ['Profile'],
|
|
1815
|
+
name: 'Westbridge University',
|
|
1816
|
+
},
|
|
1817
|
+
validFrom: '2025-05-18T00:00:00Z',
|
|
1818
|
+
credentialSubject: {
|
|
1819
|
+
id: 'did:example:wb-student-2025-001',
|
|
1820
|
+
type: ['AchievementSubject'],
|
|
1821
|
+
achievement: {
|
|
1822
|
+
id: 'https://westbridge.edu/programs/bs-data-science',
|
|
1823
|
+
type: ['Achievement'],
|
|
1824
|
+
achievementType: 'BachelorDegree',
|
|
1825
|
+
name: 'Bachelor of Science in Data Science',
|
|
1826
|
+
description:
|
|
1827
|
+
'A four-year undergraduate program preparing graduates to extract insight from complex data through rigorous quantitative, computational, and ethical training.',
|
|
1828
|
+
humanCode: 'BS-DS',
|
|
1829
|
+
fieldOfStudy: 'Data Science',
|
|
1830
|
+
inLanguage: 'en',
|
|
1831
|
+
tag: ['degree', 'undergraduate', 'data-science'],
|
|
1832
|
+
creator: {
|
|
1833
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
1834
|
+
type: ['Profile'],
|
|
1835
|
+
name: 'Department of Data Science',
|
|
1836
|
+
},
|
|
1837
|
+
alignment: [
|
|
1838
|
+
{
|
|
1839
|
+
type: ['Alignment'],
|
|
1840
|
+
targetCode: 'ACM-DS-2021',
|
|
1841
|
+
targetName: 'ACM Data Science Curricular Guidance',
|
|
1842
|
+
targetFramework: 'ACM Computing Curricula 2021',
|
|
1843
|
+
targetType: 'CFRubric',
|
|
1844
|
+
targetUrl:
|
|
1845
|
+
'https://www.acm.org/education/curricula-recommendations',
|
|
1846
|
+
targetDescription:
|
|
1847
|
+
'Program aligns with ACM 2021 data science undergraduate guidelines.',
|
|
1848
|
+
},
|
|
1849
|
+
],
|
|
1850
|
+
resultDescription: [
|
|
1851
|
+
{
|
|
1852
|
+
id: 'urn:uuid:wb-rd-gpa',
|
|
1853
|
+
type: ['ResultDescription'],
|
|
1854
|
+
name: 'Cumulative GPA',
|
|
1855
|
+
resultType: 'GradePointAverage',
|
|
1856
|
+
valueMin: '0.0',
|
|
1857
|
+
valueMax: '4.0',
|
|
1858
|
+
},
|
|
1859
|
+
{
|
|
1860
|
+
id: 'urn:uuid:wb-rd-credits',
|
|
1861
|
+
type: ['ResultDescription'],
|
|
1862
|
+
name: 'Total Credits Earned',
|
|
1863
|
+
resultType: 'RawScore',
|
|
1864
|
+
valueMin: '0',
|
|
1865
|
+
valueMax: '128',
|
|
1866
|
+
},
|
|
1867
|
+
],
|
|
1868
|
+
},
|
|
1869
|
+
result: [
|
|
1870
|
+
{
|
|
1871
|
+
type: ['Result'],
|
|
1872
|
+
value: 3.87,
|
|
1873
|
+
resultDescription: 'urn:uuid:wb-rd-gpa',
|
|
1874
|
+
},
|
|
1875
|
+
{
|
|
1876
|
+
type: ['Result'],
|
|
1877
|
+
value: 81,
|
|
1878
|
+
resultDescription: 'urn:uuid:wb-rd-credits',
|
|
1879
|
+
},
|
|
1880
|
+
],
|
|
1881
|
+
},
|
|
1882
|
+
},
|
|
1883
|
+
|
|
1884
|
+
// ── COMPETENCIES ──────────────────────────────────────────────────
|
|
1885
|
+
{
|
|
1886
|
+
'@context': [
|
|
1887
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1888
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1889
|
+
],
|
|
1890
|
+
id: 'urn:uuid:wb-comp-001',
|
|
1891
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1892
|
+
name: 'Competency — Statistical Reasoning',
|
|
1893
|
+
issuer: {
|
|
1894
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1895
|
+
type: ['Profile'],
|
|
1896
|
+
name: 'Westbridge University',
|
|
1897
|
+
},
|
|
1898
|
+
validFrom: '2025-05-18T00:00:00Z',
|
|
1899
|
+
credentialSubject: {
|
|
1900
|
+
id: 'did:example:wb-student-2025-001',
|
|
1901
|
+
type: ['AchievementSubject'],
|
|
1902
|
+
achievement: {
|
|
1903
|
+
id: 'https://westbridge.edu/competencies/statistical-reasoning',
|
|
1904
|
+
type: ['Achievement'],
|
|
1905
|
+
achievementType: 'Competency',
|
|
1906
|
+
name: 'Statistical Reasoning',
|
|
1907
|
+
description:
|
|
1908
|
+
'Ability to select and apply appropriate statistical methods, interpret results, communicate uncertainty, and critique statistical claims.',
|
|
1909
|
+
fieldOfStudy: 'Data Science',
|
|
1910
|
+
alignment: [
|
|
1911
|
+
{
|
|
1912
|
+
type: ['Alignment'],
|
|
1913
|
+
targetCode: 'DS.STAT.2',
|
|
1914
|
+
targetName: 'Advanced Statistical Reasoning',
|
|
1915
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
1916
|
+
targetType: 'CFItem',
|
|
1917
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/STAT.2',
|
|
1918
|
+
},
|
|
1919
|
+
],
|
|
1920
|
+
resultDescription: [
|
|
1921
|
+
{
|
|
1922
|
+
id: 'urn:uuid:wb-rd-comp-level',
|
|
1923
|
+
type: ['ResultDescription'],
|
|
1924
|
+
name: 'Competency Level',
|
|
1925
|
+
resultType: 'RubricCriterionLevel',
|
|
1926
|
+
allowedValue: [
|
|
1927
|
+
'Developing',
|
|
1928
|
+
'Proficient',
|
|
1929
|
+
'Advanced',
|
|
1930
|
+
'Distinguished',
|
|
1931
|
+
],
|
|
1932
|
+
},
|
|
1933
|
+
],
|
|
1934
|
+
},
|
|
1935
|
+
result: [
|
|
1936
|
+
{
|
|
1937
|
+
type: ['Result'],
|
|
1938
|
+
value: 'Distinguished',
|
|
1939
|
+
resultDescription: 'urn:uuid:wb-rd-comp-level',
|
|
1940
|
+
},
|
|
1941
|
+
],
|
|
1942
|
+
},
|
|
1943
|
+
},
|
|
1944
|
+
{
|
|
1945
|
+
'@context': [
|
|
1946
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1947
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1948
|
+
],
|
|
1949
|
+
id: 'urn:uuid:wb-comp-002',
|
|
1950
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
1951
|
+
name: 'Competency — Data Communication',
|
|
1952
|
+
issuer: {
|
|
1953
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
1954
|
+
type: ['Profile'],
|
|
1955
|
+
name: 'Westbridge University',
|
|
1956
|
+
},
|
|
1957
|
+
validFrom: '2025-05-18T00:00:00Z',
|
|
1958
|
+
credentialSubject: {
|
|
1959
|
+
id: 'did:example:wb-student-2025-001',
|
|
1960
|
+
type: ['AchievementSubject'],
|
|
1961
|
+
achievement: {
|
|
1962
|
+
id: 'https://westbridge.edu/competencies/data-communication',
|
|
1963
|
+
type: ['Achievement'],
|
|
1964
|
+
achievementType: 'Competency',
|
|
1965
|
+
name: 'Data Communication',
|
|
1966
|
+
description:
|
|
1967
|
+
'Ability to synthesize analytical findings into clear written, visual, and oral narratives for both technical and non-technical audiences.',
|
|
1968
|
+
fieldOfStudy: 'Data Science',
|
|
1969
|
+
resultDescription: [
|
|
1970
|
+
{
|
|
1971
|
+
id: 'urn:uuid:wb-rd-comp-level',
|
|
1972
|
+
type: ['ResultDescription'],
|
|
1973
|
+
name: 'Competency Level',
|
|
1974
|
+
resultType: 'RubricCriterionLevel',
|
|
1975
|
+
allowedValue: [
|
|
1976
|
+
'Developing',
|
|
1977
|
+
'Proficient',
|
|
1978
|
+
'Advanced',
|
|
1979
|
+
'Distinguished',
|
|
1980
|
+
],
|
|
1981
|
+
},
|
|
1982
|
+
],
|
|
1983
|
+
},
|
|
1984
|
+
result: [
|
|
1985
|
+
{
|
|
1986
|
+
type: ['Result'],
|
|
1987
|
+
value: 'Distinguished',
|
|
1988
|
+
resultDescription: 'urn:uuid:wb-rd-comp-level',
|
|
1989
|
+
},
|
|
1990
|
+
],
|
|
1991
|
+
},
|
|
1992
|
+
},
|
|
1993
|
+
{
|
|
1994
|
+
'@context': [
|
|
1995
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
1996
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
1997
|
+
],
|
|
1998
|
+
id: 'urn:uuid:wb-comp-003',
|
|
1999
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
2000
|
+
name: 'Competency — Ethical AI Practice',
|
|
2001
|
+
issuer: {
|
|
2002
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
2003
|
+
type: ['Profile'],
|
|
2004
|
+
name: 'Westbridge University',
|
|
2005
|
+
},
|
|
2006
|
+
validFrom: '2025-05-18T00:00:00Z',
|
|
2007
|
+
credentialSubject: {
|
|
2008
|
+
id: 'did:example:wb-student-2025-001',
|
|
2009
|
+
type: ['AchievementSubject'],
|
|
2010
|
+
achievement: {
|
|
2011
|
+
id: 'https://westbridge.edu/competencies/ethical-ai',
|
|
2012
|
+
type: ['Achievement'],
|
|
2013
|
+
achievementType: 'Competency',
|
|
2014
|
+
name: 'Ethical AI Practice',
|
|
2015
|
+
description:
|
|
2016
|
+
'Ability to identify, analyze, and mitigate bias, fairness, and harm in AI systems; applies ethical frameworks to real-world deployment decisions.',
|
|
2017
|
+
fieldOfStudy: 'Data Science',
|
|
2018
|
+
alignment: [
|
|
2019
|
+
{
|
|
2020
|
+
type: ['Alignment'],
|
|
2021
|
+
targetCode: 'DS.ETHICS.2',
|
|
2022
|
+
targetName: 'Ethical AI Deployment',
|
|
2023
|
+
targetFramework: 'Westbridge DS Competency Framework v2',
|
|
2024
|
+
targetType: 'CFItem',
|
|
2025
|
+
targetUrl: 'https://westbridge.edu/frameworks/ds/ETHICS.2',
|
|
2026
|
+
},
|
|
2027
|
+
],
|
|
2028
|
+
resultDescription: [
|
|
2029
|
+
{
|
|
2030
|
+
id: 'urn:uuid:wb-rd-comp-level',
|
|
2031
|
+
type: ['ResultDescription'],
|
|
2032
|
+
name: 'Competency Level',
|
|
2033
|
+
resultType: 'RubricCriterionLevel',
|
|
2034
|
+
allowedValue: [
|
|
2035
|
+
'Developing',
|
|
2036
|
+
'Proficient',
|
|
2037
|
+
'Advanced',
|
|
2038
|
+
'Distinguished',
|
|
2039
|
+
],
|
|
2040
|
+
},
|
|
2041
|
+
],
|
|
2042
|
+
},
|
|
2043
|
+
result: [
|
|
2044
|
+
{
|
|
2045
|
+
type: ['Result'],
|
|
2046
|
+
value: 'Advanced',
|
|
2047
|
+
resultDescription: 'urn:uuid:wb-rd-comp-level',
|
|
2048
|
+
},
|
|
2049
|
+
],
|
|
2050
|
+
},
|
|
2051
|
+
},
|
|
2052
|
+
|
|
2053
|
+
// ── STANDARDIZED ASSESSMENT ───────────────────────────────────────
|
|
2054
|
+
{
|
|
2055
|
+
'@context': [
|
|
2056
|
+
'https://www.w3.org/ns/credentials/v2',
|
|
2057
|
+
'https://purl.imsglobal.org/spec/ob/v3p0/context-3.0.3.json',
|
|
2058
|
+
],
|
|
2059
|
+
id: 'urn:uuid:wb-assess-001',
|
|
2060
|
+
type: ['VerifiableCredential', 'AchievementCredential'],
|
|
2061
|
+
name: 'ACT Score Report',
|
|
2062
|
+
issuer: {
|
|
2063
|
+
id: 'did:web:registrar.westbridge.edu',
|
|
2064
|
+
type: ['Profile'],
|
|
2065
|
+
name: 'Westbridge University',
|
|
2066
|
+
},
|
|
2067
|
+
validFrom: '2021-04-17T00:00:00Z',
|
|
2068
|
+
credentialSubject: {
|
|
2069
|
+
id: 'did:example:wb-student-2025-001',
|
|
2070
|
+
type: ['AchievementSubject'],
|
|
2071
|
+
achievement: {
|
|
2072
|
+
id: 'https://westbridge.edu/assessments/act-2021',
|
|
2073
|
+
type: ['Achievement'],
|
|
2074
|
+
achievementType: 'Assessment',
|
|
2075
|
+
name: 'ACT College Readiness Assessment',
|
|
2076
|
+
description:
|
|
2077
|
+
'ACT standardized college readiness test scores submitted during undergraduate admission. Scores reported on a 1–36 scale per section.',
|
|
2078
|
+
fieldOfStudy: 'Assessment',
|
|
2079
|
+
resultDescription: [
|
|
2080
|
+
{
|
|
2081
|
+
id: 'urn:uuid:wb-rd-act-composite',
|
|
2082
|
+
type: ['ResultDescription'],
|
|
2083
|
+
name: 'Composite',
|
|
2084
|
+
resultType: 'RawScore',
|
|
2085
|
+
valueMin: '1',
|
|
2086
|
+
valueMax: '36',
|
|
2087
|
+
},
|
|
2088
|
+
{
|
|
2089
|
+
id: 'urn:uuid:wb-rd-act-english',
|
|
2090
|
+
type: ['ResultDescription'],
|
|
2091
|
+
name: 'English',
|
|
2092
|
+
resultType: 'RawScore',
|
|
2093
|
+
valueMin: '1',
|
|
2094
|
+
valueMax: '36',
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
id: 'urn:uuid:wb-rd-act-math',
|
|
2098
|
+
type: ['ResultDescription'],
|
|
2099
|
+
name: 'Mathematics',
|
|
2100
|
+
resultType: 'RawScore',
|
|
2101
|
+
valueMin: '1',
|
|
2102
|
+
valueMax: '36',
|
|
2103
|
+
},
|
|
2104
|
+
{
|
|
2105
|
+
id: 'urn:uuid:wb-rd-act-reading',
|
|
2106
|
+
type: ['ResultDescription'],
|
|
2107
|
+
name: 'Reading',
|
|
2108
|
+
resultType: 'RawScore',
|
|
2109
|
+
valueMin: '1',
|
|
2110
|
+
valueMax: '36',
|
|
2111
|
+
},
|
|
2112
|
+
{
|
|
2113
|
+
id: 'urn:uuid:wb-rd-act-science',
|
|
2114
|
+
type: ['ResultDescription'],
|
|
2115
|
+
name: 'Science',
|
|
2116
|
+
resultType: 'RawScore',
|
|
2117
|
+
valueMin: '1',
|
|
2118
|
+
valueMax: '36',
|
|
2119
|
+
},
|
|
2120
|
+
{
|
|
2121
|
+
id: 'urn:uuid:wb-rd-act-writing',
|
|
2122
|
+
type: ['ResultDescription'],
|
|
2123
|
+
name: 'Writing',
|
|
2124
|
+
resultType: 'RawScore',
|
|
2125
|
+
valueMin: '2',
|
|
2126
|
+
valueMax: '12',
|
|
2127
|
+
},
|
|
2128
|
+
],
|
|
2129
|
+
},
|
|
2130
|
+
result: [
|
|
2131
|
+
{
|
|
2132
|
+
type: ['Result'],
|
|
2133
|
+
value: 34,
|
|
2134
|
+
resultDescription: 'urn:uuid:wb-rd-act-composite',
|
|
2135
|
+
},
|
|
2136
|
+
{
|
|
2137
|
+
type: ['Result'],
|
|
2138
|
+
value: 35,
|
|
2139
|
+
resultDescription: 'urn:uuid:wb-rd-act-english',
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
type: ['Result'],
|
|
2143
|
+
value: 33,
|
|
2144
|
+
resultDescription: 'urn:uuid:wb-rd-act-math',
|
|
2145
|
+
},
|
|
2146
|
+
{
|
|
2147
|
+
type: ['Result'],
|
|
2148
|
+
value: 35,
|
|
2149
|
+
resultDescription: 'urn:uuid:wb-rd-act-reading',
|
|
2150
|
+
},
|
|
2151
|
+
{
|
|
2152
|
+
type: ['Result'],
|
|
2153
|
+
value: 33,
|
|
2154
|
+
resultDescription: 'urn:uuid:wb-rd-act-science',
|
|
2155
|
+
},
|
|
2156
|
+
{
|
|
2157
|
+
type: ['Result'],
|
|
2158
|
+
value: 10,
|
|
2159
|
+
resultDescription: 'urn:uuid:wb-rd-act-writing',
|
|
2160
|
+
},
|
|
2161
|
+
],
|
|
2162
|
+
},
|
|
2163
|
+
},
|
|
2164
|
+
],
|
|
2165
|
+
|
|
2166
|
+
achievement: [
|
|
2167
|
+
{
|
|
2168
|
+
id: 'https://westbridge.edu/programs/bs-data-science',
|
|
2169
|
+
type: ['Achievement'],
|
|
2170
|
+
achievementType: 'BachelorDegree',
|
|
2171
|
+
name: 'Bachelor of Science in Data Science',
|
|
2172
|
+
humanCode: 'BS-DS',
|
|
2173
|
+
fieldOfStudy: 'Data Science',
|
|
2174
|
+
creator: {
|
|
2175
|
+
id: 'https://westbridge.edu/departments/data-science',
|
|
2176
|
+
type: ['Profile'],
|
|
2177
|
+
name: 'Department of Data Science',
|
|
2178
|
+
},
|
|
2179
|
+
resultDescription: [
|
|
2180
|
+
{
|
|
2181
|
+
id: 'urn:uuid:wb-rd-gpa',
|
|
2182
|
+
type: ['ResultDescription'],
|
|
2183
|
+
name: 'Cumulative GPA',
|
|
2184
|
+
resultType: 'GradePointAverage',
|
|
2185
|
+
valueMin: '0.0',
|
|
2186
|
+
valueMax: '4.0',
|
|
2187
|
+
},
|
|
2188
|
+
],
|
|
2189
|
+
},
|
|
2190
|
+
],
|
|
2191
|
+
|
|
2192
|
+
association: [
|
|
2193
|
+
// ── COURSE → DEGREE (isChildOf) ───────────────────────────────────
|
|
2194
|
+
// Every course is a component of the BS in Data Science.
|
|
2195
|
+
{
|
|
2196
|
+
type: ['Association'],
|
|
2197
|
+
associationType: 'isChildOf',
|
|
2198
|
+
sourceId: 'urn:uuid:wb-ds101',
|
|
2199
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2200
|
+
}, // DS 101 → BS-DS
|
|
2201
|
+
{
|
|
2202
|
+
type: ['Association'],
|
|
2203
|
+
associationType: 'isChildOf',
|
|
2204
|
+
sourceId: 'urn:uuid:wb-math151',
|
|
2205
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2206
|
+
}, // MATH 151 → BS-DS
|
|
2207
|
+
{
|
|
2208
|
+
type: ['Association'],
|
|
2209
|
+
associationType: 'isChildOf',
|
|
2210
|
+
sourceId: 'urn:uuid:wb-cs101',
|
|
2211
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2212
|
+
}, // CS 101 → BS-DS
|
|
2213
|
+
{
|
|
2214
|
+
type: ['Association'],
|
|
2215
|
+
associationType: 'isChildOf',
|
|
2216
|
+
sourceId: 'urn:uuid:wb-stat201',
|
|
2217
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2218
|
+
}, // STAT 201 → BS-DS
|
|
2219
|
+
{
|
|
2220
|
+
type: ['Association'],
|
|
2221
|
+
associationType: 'isChildOf',
|
|
2222
|
+
sourceId: 'urn:uuid:wb-math201',
|
|
2223
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2224
|
+
}, // MATH 201 → BS-DS
|
|
2225
|
+
{
|
|
2226
|
+
type: ['Association'],
|
|
2227
|
+
associationType: 'isChildOf',
|
|
2228
|
+
sourceId: 'urn:uuid:wb-ds110',
|
|
2229
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2230
|
+
}, // DS 110 → BS-DS
|
|
2231
|
+
{
|
|
2232
|
+
type: ['Association'],
|
|
2233
|
+
associationType: 'isChildOf',
|
|
2234
|
+
sourceId: 'urn:uuid:wb-ds201',
|
|
2235
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2236
|
+
}, // DS 201 → BS-DS
|
|
2237
|
+
{
|
|
2238
|
+
type: ['Association'],
|
|
2239
|
+
associationType: 'isChildOf',
|
|
2240
|
+
sourceId: 'urn:uuid:wb-cs201',
|
|
2241
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2242
|
+
}, // CS 201 → BS-DS
|
|
2243
|
+
{
|
|
2244
|
+
type: ['Association'],
|
|
2245
|
+
associationType: 'isChildOf',
|
|
2246
|
+
sourceId: 'urn:uuid:wb-comm201',
|
|
2247
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2248
|
+
}, // COMM 201 → BS-DS
|
|
2249
|
+
{
|
|
2250
|
+
type: ['Association'],
|
|
2251
|
+
associationType: 'isChildOf',
|
|
2252
|
+
sourceId: 'urn:uuid:wb-ds211',
|
|
2253
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2254
|
+
}, // DS 211 → BS-DS
|
|
2255
|
+
{
|
|
2256
|
+
type: ['Association'],
|
|
2257
|
+
associationType: 'isChildOf',
|
|
2258
|
+
sourceId: 'urn:uuid:wb-cs310',
|
|
2259
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2260
|
+
}, // CS 310 → BS-DS
|
|
2261
|
+
{
|
|
2262
|
+
type: ['Association'],
|
|
2263
|
+
associationType: 'isChildOf',
|
|
2264
|
+
sourceId: 'urn:uuid:wb-econ201',
|
|
2265
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2266
|
+
}, // ECON 201 → BS-DS
|
|
2267
|
+
{
|
|
2268
|
+
type: ['Association'],
|
|
2269
|
+
associationType: 'isChildOf',
|
|
2270
|
+
sourceId: 'urn:uuid:wb-ds301',
|
|
2271
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2272
|
+
}, // DS 301 → BS-DS
|
|
2273
|
+
{
|
|
2274
|
+
type: ['Association'],
|
|
2275
|
+
associationType: 'isChildOf',
|
|
2276
|
+
sourceId: 'urn:uuid:wb-ds310',
|
|
2277
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2278
|
+
}, // DS 310 → BS-DS
|
|
2279
|
+
{
|
|
2280
|
+
type: ['Association'],
|
|
2281
|
+
associationType: 'isChildOf',
|
|
2282
|
+
sourceId: 'urn:uuid:wb-phil310',
|
|
2283
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2284
|
+
}, // PHIL 310 → BS-DS
|
|
2285
|
+
{
|
|
2286
|
+
type: ['Association'],
|
|
2287
|
+
associationType: 'isChildOf',
|
|
2288
|
+
sourceId: 'urn:uuid:wb-ds311',
|
|
2289
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2290
|
+
}, // DS 311 → BS-DS
|
|
2291
|
+
{
|
|
2292
|
+
type: ['Association'],
|
|
2293
|
+
associationType: 'isChildOf',
|
|
2294
|
+
sourceId: 'urn:uuid:wb-ds320',
|
|
2295
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2296
|
+
}, // DS 320 → BS-DS
|
|
2297
|
+
{
|
|
2298
|
+
type: ['Association'],
|
|
2299
|
+
associationType: 'isChildOf',
|
|
2300
|
+
sourceId: 'urn:uuid:wb-stat401',
|
|
2301
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2302
|
+
}, // STAT 401 → BS-DS
|
|
2303
|
+
{
|
|
2304
|
+
type: ['Association'],
|
|
2305
|
+
associationType: 'isChildOf',
|
|
2306
|
+
sourceId: 'urn:uuid:wb-ds401',
|
|
2307
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2308
|
+
}, // DS 401 → BS-DS
|
|
2309
|
+
{
|
|
2310
|
+
type: ['Association'],
|
|
2311
|
+
associationType: 'isChildOf',
|
|
2312
|
+
sourceId: 'urn:uuid:wb-ds410',
|
|
2313
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2314
|
+
}, // DS 410 → BS-DS
|
|
2315
|
+
{
|
|
2316
|
+
type: ['Association'],
|
|
2317
|
+
associationType: 'isChildOf',
|
|
2318
|
+
sourceId: 'urn:uuid:wb-ds420',
|
|
2319
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2320
|
+
}, // DS 420 → BS-DS
|
|
2321
|
+
{
|
|
2322
|
+
type: ['Association'],
|
|
2323
|
+
associationType: 'isChildOf',
|
|
2324
|
+
sourceId: 'urn:uuid:wb-ds490',
|
|
2325
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2326
|
+
}, // DS 490 → BS-DS
|
|
2327
|
+
{
|
|
2328
|
+
type: ['Association'],
|
|
2329
|
+
associationType: 'isChildOf',
|
|
2330
|
+
sourceId: 'urn:uuid:wb-ds450',
|
|
2331
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2332
|
+
}, // DS 450 → BS-DS
|
|
2333
|
+
{
|
|
2334
|
+
type: ['Association'],
|
|
2335
|
+
associationType: 'isChildOf',
|
|
2336
|
+
sourceId: 'urn:uuid:wb-ds460',
|
|
2337
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2338
|
+
}, // DS 460 → BS-DS
|
|
2339
|
+
|
|
2340
|
+
// ── COMPETENCY / ASSESSMENT → DEGREE (isRelatedTo) ────────────────
|
|
2341
|
+
// Program-level: all three competencies and the ACT score are related to
|
|
2342
|
+
// the degree as a whole (demonstrated across the full program).
|
|
2343
|
+
{
|
|
2344
|
+
type: ['Association'],
|
|
2345
|
+
associationType: 'isRelatedTo',
|
|
2346
|
+
sourceId: 'urn:uuid:wb-comp-001',
|
|
2347
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2348
|
+
}, // Statistical Reasoning → BS-DS
|
|
2349
|
+
{
|
|
2350
|
+
type: ['Association'],
|
|
2351
|
+
associationType: 'isRelatedTo',
|
|
2352
|
+
sourceId: 'urn:uuid:wb-comp-002',
|
|
2353
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2354
|
+
}, // Data Communication → BS-DS
|
|
2355
|
+
{
|
|
2356
|
+
type: ['Association'],
|
|
2357
|
+
associationType: 'isRelatedTo',
|
|
2358
|
+
sourceId: 'urn:uuid:wb-comp-003',
|
|
2359
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2360
|
+
}, // Ethical AI Practice → BS-DS
|
|
2361
|
+
{
|
|
2362
|
+
type: ['Association'],
|
|
2363
|
+
associationType: 'isRelatedTo',
|
|
2364
|
+
sourceId: 'urn:uuid:wb-assess-001',
|
|
2365
|
+
targetId: 'urn:uuid:wb-degree-001',
|
|
2366
|
+
}, // ACT → BS-DS
|
|
2367
|
+
|
|
2368
|
+
// ── COMPETENCY → COURSE (isRelatedTo) ─────────────────────────────
|
|
2369
|
+
// Course-level: each competency is also tied to the specific course(s)
|
|
2370
|
+
// that develop it, derived from matching alignment framework families.
|
|
2371
|
+
// Statistical Reasoning (DS.STAT.*) — STAT 201, DS 211, STAT 401
|
|
2372
|
+
{
|
|
2373
|
+
type: ['Association'],
|
|
2374
|
+
associationType: 'isRelatedTo',
|
|
2375
|
+
sourceId: 'urn:uuid:wb-comp-001',
|
|
2376
|
+
targetId: 'urn:uuid:wb-stat201',
|
|
2377
|
+
}, // Statistical Reasoning → STAT 201
|
|
2378
|
+
{
|
|
2379
|
+
type: ['Association'],
|
|
2380
|
+
associationType: 'isRelatedTo',
|
|
2381
|
+
sourceId: 'urn:uuid:wb-comp-001',
|
|
2382
|
+
targetId: 'urn:uuid:wb-ds211',
|
|
2383
|
+
}, // Statistical Reasoning → DS 211
|
|
2384
|
+
{
|
|
2385
|
+
type: ['Association'],
|
|
2386
|
+
associationType: 'isRelatedTo',
|
|
2387
|
+
sourceId: 'urn:uuid:wb-comp-001',
|
|
2388
|
+
targetId: 'urn:uuid:wb-stat401',
|
|
2389
|
+
}, // Statistical Reasoning → STAT 401
|
|
2390
|
+
// Data Communication — COMM 201
|
|
2391
|
+
{
|
|
2392
|
+
type: ['Association'],
|
|
2393
|
+
associationType: 'isRelatedTo',
|
|
2394
|
+
sourceId: 'urn:uuid:wb-comp-002',
|
|
2395
|
+
targetId: 'urn:uuid:wb-comm201',
|
|
2396
|
+
}, // Data Communication → COMM 201
|
|
2397
|
+
// Ethical AI Practice (DS.ETHICS.*) — PHIL 310, DS 420
|
|
2398
|
+
{
|
|
2399
|
+
type: ['Association'],
|
|
2400
|
+
associationType: 'isRelatedTo',
|
|
2401
|
+
sourceId: 'urn:uuid:wb-comp-003',
|
|
2402
|
+
targetId: 'urn:uuid:wb-phil310',
|
|
2403
|
+
}, // Ethical AI Practice → PHIL 310
|
|
2404
|
+
{
|
|
2405
|
+
type: ['Association'],
|
|
2406
|
+
associationType: 'isRelatedTo',
|
|
2407
|
+
sourceId: 'urn:uuid:wb-comp-003',
|
|
2408
|
+
targetId: 'urn:uuid:wb-ds420',
|
|
2409
|
+
}, // Ethical AI Practice → DS 420
|
|
2410
|
+
|
|
2411
|
+
// ── PREREQUISITES (precedes) ──────────────────────────────────────
|
|
2412
|
+
// A → B means A must be completed before B.
|
|
2413
|
+
{
|
|
2414
|
+
type: ['Association'],
|
|
2415
|
+
associationType: 'precedes',
|
|
2416
|
+
sourceId: 'urn:uuid:wb-ds101',
|
|
2417
|
+
targetId: 'urn:uuid:wb-ds110',
|
|
2418
|
+
}, // DS 101 → DS 110
|
|
2419
|
+
{
|
|
2420
|
+
type: ['Association'],
|
|
2421
|
+
associationType: 'precedes',
|
|
2422
|
+
sourceId: 'urn:uuid:wb-ds101',
|
|
2423
|
+
targetId: 'urn:uuid:wb-ds201',
|
|
2424
|
+
}, // DS 101 → DS 201
|
|
2425
|
+
{
|
|
2426
|
+
type: ['Association'],
|
|
2427
|
+
associationType: 'precedes',
|
|
2428
|
+
sourceId: 'urn:uuid:wb-ds110',
|
|
2429
|
+
targetId: 'urn:uuid:wb-ds201',
|
|
2430
|
+
}, // DS 110 → DS 201
|
|
2431
|
+
{
|
|
2432
|
+
type: ['Association'],
|
|
2433
|
+
associationType: 'precedes',
|
|
2434
|
+
sourceId: 'urn:uuid:wb-math151',
|
|
2435
|
+
targetId: 'urn:uuid:wb-math201',
|
|
2436
|
+
}, // MATH 151 → MATH 201
|
|
2437
|
+
{
|
|
2438
|
+
type: ['Association'],
|
|
2439
|
+
associationType: 'precedes',
|
|
2440
|
+
sourceId: 'urn:uuid:wb-cs101',
|
|
2441
|
+
targetId: 'urn:uuid:wb-cs201',
|
|
2442
|
+
}, // CS 101 → CS 201
|
|
2443
|
+
{
|
|
2444
|
+
type: ['Association'],
|
|
2445
|
+
associationType: 'precedes',
|
|
2446
|
+
sourceId: 'urn:uuid:wb-stat201',
|
|
2447
|
+
targetId: 'urn:uuid:wb-ds211',
|
|
2448
|
+
}, // STAT 201 → DS 211
|
|
2449
|
+
{
|
|
2450
|
+
type: ['Association'],
|
|
2451
|
+
associationType: 'precedes',
|
|
2452
|
+
sourceId: 'urn:uuid:wb-cs101',
|
|
2453
|
+
targetId: 'urn:uuid:wb-cs310',
|
|
2454
|
+
}, // CS 101 → CS 310
|
|
2455
|
+
{
|
|
2456
|
+
type: ['Association'],
|
|
2457
|
+
associationType: 'precedes',
|
|
2458
|
+
sourceId: 'urn:uuid:wb-cs201',
|
|
2459
|
+
targetId: 'urn:uuid:wb-cs310',
|
|
2460
|
+
}, // CS 201 → CS 310
|
|
2461
|
+
{
|
|
2462
|
+
type: ['Association'],
|
|
2463
|
+
associationType: 'precedes',
|
|
2464
|
+
sourceId: 'urn:uuid:wb-ds201',
|
|
2465
|
+
targetId: 'urn:uuid:wb-ds301',
|
|
2466
|
+
}, // DS 201 → DS 301
|
|
2467
|
+
{
|
|
2468
|
+
type: ['Association'],
|
|
2469
|
+
associationType: 'precedes',
|
|
2470
|
+
sourceId: 'urn:uuid:wb-ds201',
|
|
2471
|
+
targetId: 'urn:uuid:wb-ds310',
|
|
2472
|
+
}, // DS 201 → DS 310
|
|
2473
|
+
{
|
|
2474
|
+
type: ['Association'],
|
|
2475
|
+
associationType: 'precedes',
|
|
2476
|
+
sourceId: 'urn:uuid:wb-ds211',
|
|
2477
|
+
targetId: 'urn:uuid:wb-ds311',
|
|
2478
|
+
}, // DS 211 → DS 311
|
|
2479
|
+
{
|
|
2480
|
+
type: ['Association'],
|
|
2481
|
+
associationType: 'precedes',
|
|
2482
|
+
sourceId: 'urn:uuid:wb-ds320',
|
|
2483
|
+
targetId: 'urn:uuid:wb-ds401',
|
|
2484
|
+
}, // DS 320 → DS 401
|
|
2485
|
+
{
|
|
2486
|
+
type: ['Association'],
|
|
2487
|
+
associationType: 'precedes',
|
|
2488
|
+
sourceId: 'urn:uuid:wb-phil310',
|
|
2489
|
+
targetId: 'urn:uuid:wb-ds420',
|
|
2490
|
+
}, // PHIL 310 → DS 420
|
|
2491
|
+
{
|
|
2492
|
+
type: ['Association'],
|
|
2493
|
+
associationType: 'precedes',
|
|
2494
|
+
sourceId: 'urn:uuid:wb-ds301',
|
|
2495
|
+
targetId: 'urn:uuid:wb-ds401',
|
|
2496
|
+
}, // DS 301 → DS 401
|
|
2497
|
+
{
|
|
2498
|
+
type: ['Association'],
|
|
2499
|
+
associationType: 'precedes',
|
|
2500
|
+
sourceId: 'urn:uuid:wb-ds301',
|
|
2501
|
+
targetId: 'urn:uuid:wb-ds490',
|
|
2502
|
+
}, // DS 301 → DS 490
|
|
2503
|
+
{
|
|
2504
|
+
type: ['Association'],
|
|
2505
|
+
associationType: 'precedes',
|
|
2506
|
+
sourceId: 'urn:uuid:wb-ds401',
|
|
2507
|
+
targetId: 'urn:uuid:wb-ds490',
|
|
2508
|
+
}, // DS 401 → DS 490
|
|
2509
|
+
{
|
|
2510
|
+
type: ['Association'],
|
|
2511
|
+
associationType: 'precedes',
|
|
2512
|
+
sourceId: 'urn:uuid:wb-ds410',
|
|
2513
|
+
targetId: 'urn:uuid:wb-ds490',
|
|
2514
|
+
}, // DS 410 → DS 490
|
|
2515
|
+
{
|
|
2516
|
+
type: ['Association'],
|
|
2517
|
+
associationType: 'precedes',
|
|
2518
|
+
sourceId: 'urn:uuid:wb-ds450',
|
|
2519
|
+
targetId: 'urn:uuid:wb-ds490',
|
|
2520
|
+
}, // DS 450 → DS 490
|
|
2521
|
+
],
|
|
2522
|
+
},
|
|
2523
|
+
},
|
|
2524
|
+
};
|