@verii/sample-data 1.0.0-pre.1752076816

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (170) hide show
  1. package/LICENSE +202 -0
  2. package/NOTICE +1 -0
  3. package/add-vacc.json +3 -0
  4. package/index.js +26 -0
  5. package/jest.config.js +20 -0
  6. package/package.json +23 -0
  7. package/src/credentials.js +31 -0
  8. package/src/did-docs.js +169 -0
  9. package/src/expiration.js +123 -0
  10. package/src/new-vendor-offers/adam-educationdegree.jwt +1 -0
  11. package/src/new-vendor-offers/adam-pastemployment.jwt +1 -0
  12. package/src/new-vendor-offers/andrew-hall-certification.json +20 -0
  13. package/src/new-vendor-offers/andrew-hall-course.json +36 -0
  14. package/src/new-vendor-offers/andrew-hall-education-degree.json +40 -0
  15. package/src/new-vendor-offers/education-degree.json +36 -0
  16. package/src/new-vendor-offers/loek-certification-offer.json +43 -0
  17. package/src/new-vendor-offers/loek-education-degree-offer.json +51 -0
  18. package/src/new-vendor-offers/marko-certification.json +39 -0
  19. package/src/new-vendor-offers/marko-education-degree.json +42 -0
  20. package/src/new-vendor-offers/marko-past-employment.json +36 -0
  21. package/src/new-vendor-offers/michelle-harris-course.json +35 -0
  22. package/src/new-vendor-offers/montse-education-degree-offer.json +51 -0
  23. package/src/new-vendor-offers/montse-reyes-past-employment.json +34 -0
  24. package/src/new-vendor-offers/noah-brown-course.json +28 -0
  25. package/src/new-vendor-offers/noah-brown-education-degree.json +35 -0
  26. package/src/new-vendor-offers/olivia-hafez-hope-community-emplyoment.json +39 -0
  27. package/src/new-vendor-offers/olivia-hafez-license.json +21 -0
  28. package/src/new-vendor-offers/olivia-hafez-vacc.json +19 -0
  29. package/src/open-badge-credential-example.json +59 -0
  30. package/src/organization-profiles.js +82 -0
  31. package/src/presentation-definition.json +49 -0
  32. package/src/presentations.js +23 -0
  33. package/src/sample-education-degree-graduation.js +65 -0
  34. package/src/tampering.js +31 -0
  35. package/src/users/README.md +5 -0
  36. package/src/users/adam-smith-drivers-license-v1.0.jwt +1 -0
  37. package/src/users/adam-smith-email-v1.0.jwt +1 -0
  38. package/src/users/adam-smith-email.json +3 -0
  39. package/src/users/adam-smith-email.jwt +1 -0
  40. package/src/users/adam-smith-id-document.json +16 -0
  41. package/src/users/adam-smith-id-document.jwt +1 -0
  42. package/src/users/adam-smith-phone-v1.0.jwt +1 -0
  43. package/src/users/adam-smith-phone.json +3 -0
  44. package/src/users/adam-smith-phone.jwt +1 -0
  45. package/src/users/adam-smith-presentation-career.jwt +1 -0
  46. package/src/users/adam-smith-presentation-ids.jwt +1 -0
  47. package/src/users/andrew-hall-email-v1.0.jwt +1 -0
  48. package/src/users/andrew-hall-email.json +3 -0
  49. package/src/users/andrew-hall-email.jwt +1 -0
  50. package/src/users/andrew-hall-id-document.json +30 -0
  51. package/src/users/andrew-hall-id-document.jwt +1 -0
  52. package/src/users/andrew-hall-passport-v1.0.jwt +1 -0
  53. package/src/users/andrew-hall-phone-v1.0.jwt +1 -0
  54. package/src/users/andrew-hall-phone.json +3 -0
  55. package/src/users/andrew-hall-phone.jwt +1 -0
  56. package/src/users/carmen-johnson-drivers-license-v1.0.jwt +1 -0
  57. package/src/users/carmen-johnson-email-v1.0.jwt +1 -0
  58. package/src/users/carmen-johnson-email.json +3 -0
  59. package/src/users/carmen-johnson-email.jwt +1 -0
  60. package/src/users/carmen-johnson-id-document.json +11 -0
  61. package/src/users/carmen-johnson-id-document.jwt +1 -0
  62. package/src/users/carmen-johnson-phone-v1.0.jwt +1 -0
  63. package/src/users/carmen-johnson-phone.json +3 -0
  64. package/src/users/carmen-johnson-phone.jwt +1 -0
  65. package/src/users/carmen-johnson-presentation-ids.jwt +1 -0
  66. package/src/users/generate-them.sh +47 -0
  67. package/src/users/loek-dejong-email-v1.0.jwt +1 -0
  68. package/src/users/loek-dejong-email.json +3 -0
  69. package/src/users/loek-dejong-email.jwt +1 -0
  70. package/src/users/loek-dejong-id-document.json +30 -0
  71. package/src/users/loek-dejong-id-document.jwt +1 -0
  72. package/src/users/loek-dejong-national-id-card-v1.0.jwt +1 -0
  73. package/src/users/loek-dejong-phone-v1.0.jwt +1 -0
  74. package/src/users/loek-dejong-phone.json +3 -0
  75. package/src/users/loek-dejong-phone.jwt +1 -0
  76. package/src/users/maria-williams-email-v1.0.jwt +1 -0
  77. package/src/users/maria-williams-email.json +3 -0
  78. package/src/users/maria-williams-email.jwt +1 -0
  79. package/src/users/maria-williams-id-document.json +10 -0
  80. package/src/users/maria-williams-id-document.jwt +1 -0
  81. package/src/users/maria-williams-passport-v1.0.jwt +1 -0
  82. package/src/users/maria-williams-phone-v1.0.jwt +1 -0
  83. package/src/users/maria-williams-phone.json +3 -0
  84. package/src/users/maria-williams-phone.jwt +1 -0
  85. package/src/users/maria-williams-presentation-ids.jwt +1 -0
  86. package/src/users/marko-nikolic-email-v1.0.jwt +1 -0
  87. package/src/users/marko-nikolic-email.json +3 -0
  88. package/src/users/marko-nikolic-email.jwt +1 -0
  89. package/src/users/marko-nikolic-id-document.json +18 -0
  90. package/src/users/marko-nikolic-id-document.jwt +1 -0
  91. package/src/users/marko-nikolic-passport-v1.0.jwt +1 -0
  92. package/src/users/marko-nikolic-phone-v1.0.jwt +1 -0
  93. package/src/users/marko-nikolic-phone.json +3 -0
  94. package/src/users/marko-nikolic-phone.jwt +1 -0
  95. package/src/users/michelle-harris-drivers-license-v1.0.jwt +1 -0
  96. package/src/users/michelle-harris-email-v1.0.jwt +1 -0
  97. package/src/users/michelle-harris-email.json +3 -0
  98. package/src/users/michelle-harris-email.jwt +1 -0
  99. package/src/users/michelle-harris-id-document.json +18 -0
  100. package/src/users/michelle-harris-id-document.jwt +1 -0
  101. package/src/users/michelle-harris-phone-v1.0.jwt +1 -0
  102. package/src/users/michelle-harris-phone.json +3 -0
  103. package/src/users/michelle-harris-phone.jwt +1 -0
  104. package/src/users/montse-reyes-email-v1.0.jwt +1 -0
  105. package/src/users/montse-reyes-email.json +3 -0
  106. package/src/users/montse-reyes-email.jwt +1 -0
  107. package/src/users/montse-reyes-id-document.json +31 -0
  108. package/src/users/montse-reyes-id-document.jwt +1 -0
  109. package/src/users/montse-reyes-passport-v1.0.jwt +1 -0
  110. package/src/users/montse-reyes-phone-v1.0.jwt +1 -0
  111. package/src/users/montse-reyes-phone.json +3 -0
  112. package/src/users/montse-reyes-phone.jwt +1 -0
  113. package/src/users/nicole-flores-drivers-license-v1.0.jwt +1 -0
  114. package/src/users/nicole-flores-email-v1.0.jwt +1 -0
  115. package/src/users/nicole-flores-email.json +3 -0
  116. package/src/users/nicole-flores-id-document.json +21 -0
  117. package/src/users/nicole-flores-phone-v1.0.jwt +1 -0
  118. package/src/users/nicole-flores-phone.json +3 -0
  119. package/src/users/noah-brown-drivers-license-v1.0.jwt +1 -0
  120. package/src/users/noah-brown-email-v1.0.jwt +1 -0
  121. package/src/users/noah-brown-email.json +3 -0
  122. package/src/users/noah-brown-email.jwt +1 -0
  123. package/src/users/noah-brown-id-document.json +30 -0
  124. package/src/users/noah-brown-id-document.jwt +1 -0
  125. package/src/users/noah-brown-phone-v1.0.jwt +1 -0
  126. package/src/users/noah-brown-phone.json +3 -0
  127. package/src/users/noah-brown-phone.jwt +1 -0
  128. package/src/users/olivia-hafez-drivers-license-v1.0.jwt +1 -0
  129. package/src/users/olivia-hafez-email-v1.0.jwt +1 -0
  130. package/src/users/olivia-hafez-email.json +3 -0
  131. package/src/users/olivia-hafez-email.jwt +1 -0
  132. package/src/users/olivia-hafez-id-document.json +11 -0
  133. package/src/users/olivia-hafez-id-document.jwt +1 -0
  134. package/src/users/olivia-hafez-phone-v1.0.jwt +1 -0
  135. package/src/users/olivia-hafez-phone.json +3 -0
  136. package/src/users/olivia-hafez-phone.jwt +1 -0
  137. package/src/users/olivia-hafez-presentation-ids.jwt +1 -0
  138. package/src/users/sheila-olsen-drivers-license-v1.0.jwt +1 -0
  139. package/src/users/sheila-olsen-email-v1.0.jwt +1 -0
  140. package/src/users/sheila-olsen-email.json +3 -0
  141. package/src/users/sheila-olsen-email.jwt +1 -0
  142. package/src/users/sheila-olsen-id-document.json +18 -0
  143. package/src/users/sheila-olsen-id-document.jwt +1 -0
  144. package/src/users/sheila-olsen-phone-v1.0.jwt +1 -0
  145. package/src/users/sheila-olsen-phone.json +3 -0
  146. package/src/users/sheila-olsen-phone.jwt +1 -0
  147. package/src/users/sheila-olsen-presentation-ids.jwt +1 -0
  148. package/src/users/sunil-singh-email-v1.0.jwt +1 -0
  149. package/src/users/sunil-singh-email.json +3 -0
  150. package/src/users/vanessa-lin-drivers-license-v1.0.jwt +1 -0
  151. package/src/users/vanessa-lin-drivers-license.json +22 -0
  152. package/src/users/vanessa-lin-email-v1.0.jwt +1 -0
  153. package/src/users/vanessa-lin-email.json +3 -0
  154. package/src/users/vanessa-lin-email.jwt +1 -0
  155. package/src/users/vanessa-lin-id-document.json +18 -0
  156. package/src/users/vanessa-lin-id-document.jwt +1 -0
  157. package/src/users/vanessa-lin-phone-v1.0.jwt +1 -0
  158. package/src/users/vanessa-lin-phone.json +3 -0
  159. package/src/users/vanessa-lin-phone.jwt +1 -0
  160. package/src/users/yann-martin-drivers-license-v1.0.jwt +1 -0
  161. package/src/users/yann-martin-email-v1.0.jwt +1 -0
  162. package/src/users/yann-martin-email.json +3 -0
  163. package/src/users/yann-martin-email.jwt +1 -0
  164. package/src/users/yann-martin-id-document.json +11 -0
  165. package/src/users/yann-martin-id-document.jwt +1 -0
  166. package/src/users/yann-martin-phone-v1.0.jwt +1 -0
  167. package/src/users/yann-martin-phone.json +3 -0
  168. package/src/users/yann-martin-phone.jwt +1 -0
  169. package/src/users/yann-martin-presentation-ids.jwt +1 -0
  170. package/test/ignore.js +0 -0
@@ -0,0 +1,36 @@
1
+ {
2
+ "type": [
3
+ "Course"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "flaxman-training-center"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "andrew.hall@example.com",
10
+ "title": { "localized": {"en": "Emerging Leaders Training"}},
11
+ "description": { "localized": {"en": "This course was designed to help you define what success means to you, and to develop a plan for achieving it. The course offers personalized assessments to help you probe your past, imagine your future, and measure your strengths. These are combined with the latest scientific insights on everything from self-confidence and happiness to relationships and careers."}},
12
+ "type": "In Company Training",
13
+ "duration": "5d",
14
+ "registrationDate": {
15
+ "day": 1,
16
+ "month": 6,
17
+ "year": 2020
18
+ },
19
+ "startDate": {
20
+ "day": 1,
21
+ "month": 7,
22
+ "year": 2020
23
+ },
24
+ "completionDate": {
25
+ "day": 1,
26
+ "month": 8,
27
+ "year": 2020
28
+ },
29
+ "alignment": {
30
+ "targetName": "Emerging Leaders Training Course",
31
+ "targetUrl": "https://sandbox.credentialengine.org/finder/learningopportunity/8461",
32
+ "targetCode": "ce-c20da527-8246-4a13-bcff-960fbf4fdf42",
33
+ "targetFramework": "Credential Registry"
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,40 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "wakefield-university"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "andrew.hall@example.com",
10
+ "school": "did:velocity:",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "Wakefield University"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Bachelor of Arts"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "Undergraduate program in accounting and economics"
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 9,
28
+ "year": 2015
29
+ },
30
+ "endMonthYear": {
31
+ "month": 6,
32
+ "year": 2018
33
+ },
34
+ "fieldsOfStudy": {
35
+ "localized": {
36
+ "en": "Accounting, Economics"
37
+ }
38
+ }
39
+ }
40
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "3e5182f1-e019-40cf-9544-c7ef485f7057",
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "adam.smith@example.com",
10
+ "school": "did:velocity:0x0b154da48d0f213c26c4b1d040dc5ff1dbf99ffa",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "University of Cambridge"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Bachelor"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "Computer Science"
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 9,
28
+ "year": 2002
29
+ },
30
+ "endMonthYear": {
31
+ "month": 5,
32
+ "year": 2005
33
+ }
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,43 @@
1
+ {
2
+ "type": [
3
+ "Certification"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "duo"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "loek.dejong@example.com",
10
+ "authority": "did:velocity:",
11
+ "authorityName": {
12
+ "localized": {
13
+ "en": "DUO"
14
+ }
15
+ },
16
+ "type": {
17
+ "localized": {
18
+ "en": "License"
19
+ }
20
+ },
21
+ "name": {
22
+ "localized": {
23
+ "en": "Mortgage Advisor License"
24
+ }
25
+ },
26
+ "certificationDate": {
27
+ "day": 1,
28
+ "month": 11,
29
+ "year": 2020
30
+ },
31
+ "notes": {
32
+ "localized": {
33
+ "en": "WFF Hypotecair Kredit Diploma"
34
+ }
35
+ },
36
+ "alignment": [{
37
+ "targetName": "WFT Hypotecair Kredit Diploma",
38
+ "targetUrl": "https://sandbox.credentialengine.org/finder/credential/15867/WFT_Hypotecair_Kredit_Diploma",
39
+ "targetCode": "ce-5e5f098f-833e-431d-9362-4ecbfe265f68",
40
+ "targetFramework": "Credential Engine - Credential Registry"
41
+ }]
42
+ }
43
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "den-haag-university"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "loek.dejong@example.com",
10
+ "school": "did:velocity:",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "Den Haag University"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Master of Arts"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "Master in Law and Economics"
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 10,
28
+ "year": 2015
29
+ },
30
+ "endMonthYear": {
31
+ "month": 7,
32
+ "year": 2019
33
+ },
34
+ "fieldsOfStudy": {
35
+ "localized": {
36
+ "en": "Economics, Law"
37
+ }
38
+ },
39
+ "grade": {
40
+ "localized": {
41
+ "en": "94"
42
+ }
43
+ },
44
+ "alignment": [{
45
+ "targetName": "M.S. Economics and Law",
46
+ "targetUrl": "https://sandbox.credentialengine.org/finder/credential/15863/M_A__Economics_and_Law",
47
+ "targetCode": "ce-cf854504-75dd-4dde-a4be-1f4fc6c91643",
48
+ "targetFramework": "Credential Engine - Credential Registry"
49
+ }]
50
+ }
51
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "type": [
3
+ "Certification"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0x74a3b3f254a021f014531e0240f0aff94b657ec7"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "marko.nikolic@example.com",
10
+ "authority": "did:velocity:0x74a3b3f254a021f014531e0240f0aff94b657ec7",
11
+ "authorityName": {
12
+ "localized": {
13
+ "en": "LABIT training academy"
14
+ }
15
+ },
16
+ "type": {
17
+ "localized": {
18
+ "en": "Certification"
19
+ }
20
+ },
21
+ "name": {
22
+ "localized": {
23
+ "en": "Clean room technician"
24
+ }
25
+ },
26
+ "certificationDate": {
27
+ "day": 12,
28
+ "month": 4,
29
+ "year": 2020
30
+ },
31
+ "alignment": [{
32
+ "targetName": "Clean Room Technician Certification",
33
+ "targetUrl": "https://sandbox.credentialengine.org/finder/credential/20151/Clean_Room_Technician_Certification",
34
+ "targetDescription": "Avant tout travail sur le terrain, les techniciens suivent un programme de formation complet qui commence par une formation en classe dans notre centre d'essai sur site et se termine par une formation sur le terrain. Les critères de formation sont basés sur les directives et recommandations du fabricant de l'équipement pour le fonctionnement et les normes et pratiques recommandées applicables.",
35
+ "targetCode": "ce-b37c73ba-61c9-41c9-b6c4-7cb17f6d694e",
36
+ "targetFramework": "Credential Engine"
37
+ }]
38
+ }
39
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0xb03c6539f6edccbd3c3a34f512bc7f681299620f"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "marko.nikolic@example.com",
10
+ "school": "did:velocity:0xb03c6539f6edccbd3c3a34f512bc7f681299620f",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "Belgrade School of Technology"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Bachelor of Engineering"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "Undergraduate program in engineering "
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 10,
28
+ "year": 2013
29
+ },
30
+ "endMonthYear": {
31
+ "month": 10,
32
+ "year": 2016
33
+ },
34
+ "alignment": [{
35
+ "targetName": "Дипломирани инжењер (Bachelor of Engineering)",
36
+ "targetUrl": "https://sandbox.credentialengine.org/finder/credential/20150/Bachelor_of_Engineering",
37
+ "targetDescription": "Студијски програм Еколошки инжењеринг има за циљ да оспособи студенте за обављање послова који се односе на управљање отпадом, одрживи развој, мониторинг и заштиту животне средине коришћењем нових технологија.",
38
+ "targetCode": "ce-fa4dc769-a42e-48a5-bb43-88669330663a",
39
+ "targetFramework": "Credential Engine"
40
+ }]
41
+ }
42
+ }
@@ -0,0 +1,36 @@
1
+ {
2
+ "type": [
3
+ "PastEmploymentPosition"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0x534c700a5421abe2b36478090f4fc59179c3c86a"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "marko.nikolic@example.com",
10
+ "company": "did:velocity:0x534c700a5421abe2b36478090f4fc59179c3c86a",
11
+ "companyName": {
12
+ "localized": {
13
+ "en": "Orchidée Pharmaceutique"
14
+ }
15
+ },
16
+ "title": {
17
+ "localized": {
18
+ "en": "Clean Room Technician"
19
+ }
20
+ },
21
+ "startMonthYear": {
22
+ "day": 20,
23
+ "month": 6,
24
+ "year": 2020
25
+ },
26
+ "endMonthYear": {
27
+ "day": 21,
28
+ "month": 4,
29
+ "year": 2021
30
+ },
31
+ "location": {
32
+ "countryCode": "FR",
33
+ "regionCode": "IL"
34
+ }
35
+ }
36
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "type": [
3
+ "Course"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0x6242efe976e065b882d8ba0ea532e95564f64abc"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "michelle.harris@example.com",
10
+ "title": { "localized": { "en": "UX design" } },
11
+ "description": { "localized": { "en": "UX design basics" } },
12
+ "duration": "3M",
13
+ "registrationDate": {
14
+ "day": 1,
15
+ "month": 5,
16
+ "year": 2021
17
+ },
18
+ "startDate": {
19
+ "day": 15,
20
+ "month": 5,
21
+ "year": 2021
22
+ },
23
+ "completionDate": {
24
+ "day": 15,
25
+ "month": 8,
26
+ "year": 2021
27
+ },
28
+ "alignment": {
29
+ "targetName": "Mobile UX/UI Design Intensive Certificate",
30
+ "targetUrl": "https://credentialfinder.org/credential/ce-4b03cf76-b780-4048-8c68-f34461a99612",
31
+ "targetDescription": "The Mobile UX/UI Design Intensive provides students with a practical knowledge of UX principles, tools and techniques in user interaction and user experience design. Upon successful completion of the intensive, students will have completed a portfolio and gain a solid foundation in UX that can be applied immediately to their current or future job opportunities.",
32
+ "targetFramework": "Credential Engine"
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,51 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "universidad-de-sant-cugat"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "montse.reyes@example.com",
10
+ "school": "did:velocity:",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "Universidad de Sant Cugat"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Bachelor of Arts"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "Undergraduate Program in Economics"
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 1,
28
+ "year": 2016
29
+ },
30
+ "endMonthYear": {
31
+ "month": 1,
32
+ "year": 2019
33
+ },
34
+ "fieldsOfStudy": {
35
+ "localized": {
36
+ "en": "Economics"
37
+ }
38
+ },
39
+ "grade": {
40
+ "localized": {
41
+ "en": "90"
42
+ }
43
+ },
44
+ "alignment": [{
45
+ "targetName": "B.A. Economics",
46
+ "targetUrl": "https://sandbox.credentialengine.org/finder/credential/13013/B_S__Economics",
47
+ "targetCode": "ce-938286c4-7113-4542-82fb-c072b7351bf8",
48
+ "targetFramework": "Credential Engine - Credential Registry"
49
+ }]
50
+ }
51
+ }
@@ -0,0 +1,34 @@
1
+ {
2
+ "type": [
3
+ "PastEmploymentPosition"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "banco-de-badalona"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "montse.reyes@example.com",
10
+ "company": "did:velocity:",
11
+ "companyName": {
12
+ "localized": {
13
+ "en": "Banco de Badalona"
14
+ }
15
+ },
16
+ "title": {
17
+ "localized": {
18
+ "en": "Derivatives Analyst"
19
+ }
20
+ },
21
+ "startMonthYear": {
22
+ "month": 10,
23
+ "year": 2018
24
+ },
25
+ "endMonthYear": {
26
+ "month": 1,
27
+ "year": 2020
28
+ },
29
+ "location": {
30
+ "countryCode": "ES",
31
+ "regionCode": "CAT"
32
+ }
33
+ }
34
+ }
@@ -0,0 +1,28 @@
1
+ {
2
+ "type": [
3
+ "Course"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0x6242efe976e065b882d8ba0ea532e95564f64abc"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "noah.brown@example.com",
10
+ "title": { "localized": { "en": "Adobe After effects" } },
11
+ "duration": "34h",
12
+ "registrationDate": {
13
+ "day": 20,
14
+ "month": 3,
15
+ "year": 2021
16
+ },
17
+ "startDate": {
18
+ "day": 24,
19
+ "month": 3,
20
+ "year": 2021
21
+ },
22
+ "completionDate": {
23
+ "day": 30,
24
+ "month": 3,
25
+ "year": 2021
26
+ }
27
+ }
28
+ }
@@ -0,0 +1,35 @@
1
+ {
2
+ "type": [
3
+ "EducationDegree"
4
+ ],
5
+ "issuer": {
6
+ "id": "did:velocity:0x6fb4ab76498a84b8f12bb2fcfcb2e6b95a637b06"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "noah.brown@example.com",
10
+ "school": "did:velocity:0x6fb4ab76498a84b8f12bb2fcfcb2e6b95a637b06",
11
+ "schoolName": {
12
+ "localized": {
13
+ "en": "Illinois College of Art"
14
+ }
15
+ },
16
+ "degreeName": {
17
+ "localized": {
18
+ "en": "Bachelor of Fine Art"
19
+ }
20
+ },
21
+ "program": {
22
+ "localized": {
23
+ "en": "UI/UX and interaction design program"
24
+ }
25
+ },
26
+ "startMonthYear": {
27
+ "month": 10,
28
+ "year": 2016
29
+ },
30
+ "endMonthYear": {
31
+ "month": 10,
32
+ "year": 2020
33
+ }
34
+ }
35
+ }
@@ -0,0 +1,39 @@
1
+ {
2
+ "type": [
3
+ "PastEmploymentPosition"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "precheck"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "olivia.hafez@example.com",
10
+ "company": "did:velocity:0xdfe0091d530d941d6b16db33d1178497588786c5",
11
+ "companyName": {
12
+ "localized": {
13
+ "en": "Hope Community Center"
14
+ }
15
+ },
16
+ "title": {
17
+ "localized": {
18
+ "en": "Tutor Assistant"
19
+ }
20
+ },
21
+ "startMonthYear": {
22
+ "month": 2,
23
+ "year": 2017
24
+ },
25
+ "endMonthYear": {
26
+ "month": 5,
27
+ "year": 2017
28
+ },
29
+ "location": {
30
+ "countryCode": "US",
31
+ "regionCode": "NJ"
32
+ },
33
+ "description": {
34
+ "localized": {
35
+ "en": "Assistant in after school tutoring program"
36
+ }
37
+ }
38
+ }
39
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "type": [
3
+ "Certification"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "precheck"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "olivia.hafez@example.com",
10
+ "authority": "did:velocity:0x689a3309d404e0cb419cde54963b6d9b395e4710",
11
+ "authorityName": { "localized": {"en": "New Jersey Board of Nursing"}},
12
+ "type": { "localized": {"en": "License"}},
13
+ "name": { "localized": {"en": "Licensed Practical Nurse"}},
14
+ "certificationDate": {
15
+ "day": 18,
16
+ "month": 5,
17
+ "year": 2020
18
+ },
19
+ "number": "PN123456L"
20
+ }
21
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "type": [
3
+ "VaccinationCertificate-Apr2021"
4
+ ],
5
+ "issuer": {
6
+ "vendorOrganizationId": "mcb-health-services"
7
+ },
8
+ "credentialSubject": {
9
+ "vendorUserId": "olivia.hafez@example.com",
10
+ "formVersion": "1.0.0",
11
+ "disease": "Covid-19",
12
+ "vaccineDescription": "Vaccine product containing only Severe acute respiratory syndrome coronavirus 2 antigen (medicinal product)",
13
+ "vaccineType": "COVID-19 mRNA vaccine",
14
+ "certifiedBy": "MCB Health Services",
15
+ "certificateNumber": "4159DE64-BA61",
16
+ "certificateValidFrom": "2021-02-18T00:00:00Z",
17
+ "certificateValidTo": "2021-08-17T00:00:00Z"
18
+ }
19
+ }
@@ -0,0 +1,59 @@
1
+ {
2
+ "@context": [
3
+ "https://www.w3.org/ns/credentials/v2",
4
+ "https://purl.imsglobal.org/spec/ob/v3p0/context-3.1.0.json"
5
+ ],
6
+ "type": ["OpenBadgeCredential", "AchievementCredential"],
7
+ "credentialSubject": {
8
+ "achievement": {
9
+ "type": "Achievement",
10
+ "id": "https://velocitynetwork.foundation/credentials/openbadgecredential-5",
11
+ "name": "Wallet Passed VN Plugfest 2024",
12
+ "description": "This wallet can display this Open Badge 3.0",
13
+ "criteria": {
14
+ "narrative": "The first cohort of the JFF Plugfest 1 in May/June of 2021 collaborated to push interoperability of VCs in education forward."
15
+ },
16
+ "image": {
17
+ "id": "https://w3c-ccg.github.io/vc-ed/plugfest-1-2022/images/plugfest-1-badge-image.png",
18
+ "type": "Image"
19
+ }
20
+ }
21
+ },
22
+ "name": "Wallet VN Plugfest 2024",
23
+ "description": "Wallets are great when they interoperate",
24
+ "image": "https://example.org/image.jpg",
25
+ "awardedDate": "2024-10-01T09:00:00.001Z",
26
+ "endorsement": [
27
+ {
28
+ "@context": [
29
+ "https://www.w3.org/ns/credentials/v2",
30
+ "https://purl.imsglobal.org/spec/ob/v3p0/context-3.1.0.json"
31
+ ],
32
+ "type": ["VerifiableCredential", "EndorsementCredential"]
33
+ }
34
+ ],
35
+ "endorsementJwt": [
36
+ "eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NksifQ.eyJuYW1lIjoiZW5kb3JzZW1lbnQiLCJpYXQiOjE3MjU0MjgwODJ9.2SSU_WYSmXobZ3xLCzQYzmciFL3IAuAl9lfJPYM1JSbwa4itJNP9CaphUhimqaLiSmS5fZYtcdLDlEGWpMghyw"
37
+ ],
38
+ "evidence": [
39
+ {
40
+ "id": "https://example.com/evidence-3219839112",
41
+ "type": ["Evidence"],
42
+ "narrative": "blah blah blah",
43
+ "name": "Big Evidence",
44
+ "audience": "Everybody"
45
+ }
46
+ ],
47
+ "credentialSchema": {
48
+ "type": "1EdTechJsonSchemaValidator2019",
49
+ "id": "http://example.com/schema.json"
50
+ },
51
+ "credentialStatus": {
52
+ "type": "1EdTechRevocationList",
53
+ "id": "https://example.edu/revocations/24"
54
+ },
55
+ "refreshService": {
56
+ "type": "1EdTechCredentialRefresh",
57
+ "id": "http://agent.example.com/refresh-service"
58
+ }
59
+ }