@eqtylab/explorer 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (140) hide show
  1. package/.env.api +6 -0
  2. package/.env.iframe +2 -0
  3. package/.env.manifest +2 -0
  4. package/.envrc +1 -0
  5. package/.eslintrc.cjs +17 -0
  6. package/.github/workflows/ci.yml +46 -0
  7. package/.github/workflows/publish.yml +44 -0
  8. package/.husky/pre-push +2 -0
  9. package/.prettierignore +2 -0
  10. package/.prettierrc.json +13 -0
  11. package/LICENSE +201 -0
  12. package/README.md +84 -0
  13. package/flake.lock +61 -0
  14. package/flake.nix +23 -0
  15. package/index.html +13 -0
  16. package/package.json +93 -0
  17. package/postcss.config.js +5 -0
  18. package/public/logos/eci.svg +23 -0
  19. package/public/logos/eqty.svg +3 -0
  20. package/public/manifests/B-200-merged.json +773 -0
  21. package/public/manifests/amd-sev.json +426 -0
  22. package/public/manifests/anchors.json +609 -0
  23. package/public/manifests/association-no-metadata.json +1393 -0
  24. package/public/manifests/association.json +1402 -0
  25. package/public/manifests/eqty-docker.json +562 -0
  26. package/public/manifests/governance.json +1324 -0
  27. package/public/manifests/intel-tdx-with-nvidia.json +441 -0
  28. package/public/manifests/intel-tdx.json +404 -0
  29. package/public/manifests/iroh-collections.json +1285 -0
  30. package/public/manifests/model-signing.json +1536 -0
  31. package/public/manifests/multiple-registrations.json +129 -0
  32. package/public/manifests/no-vcs.json +114 -0
  33. package/public/manifests/storage.json +294 -0
  34. package/public/manifests/sub-graphs.json +1 -0
  35. package/src/animations/variants.ts +52 -0
  36. package/src/app/apiClient/integrityService/fetchAttributes.ts +29 -0
  37. package/src/app/apiClient/integrityService/fetchManifest.ts +28 -0
  38. package/src/app/apiClient/integrityService/types.ts +12 -0
  39. package/src/app/components/integrityService/IntegrityService.tsx +105 -0
  40. package/src/app/components/integrityService/components/AuthButton.tsx +26 -0
  41. package/src/app/components/integrityService/components/FiltersModal.tsx +214 -0
  42. package/src/app/components/integrityService/components/FiltersToggle.tsx +28 -0
  43. package/src/app/components/manifestViewer/ManifestViewer.tsx +90 -0
  44. package/src/app/components/manifestViewer/components/ManifestButtons.tsx +215 -0
  45. package/src/app/config.json +23 -0
  46. package/src/app/config.ts +28 -0
  47. package/src/app/pages/index.tsx +34 -0
  48. package/src/app/stores/manifestStore.ts +19 -0
  49. package/src/app/utils/appMode.ts +37 -0
  50. package/src/assets/fonts/TWKLausanne-300.woff +0 -0
  51. package/src/assets/fonts/TWKLausanne-300.woff2 +0 -0
  52. package/src/assets/fonts/TWKLausanne-400.woff +0 -0
  53. package/src/assets/fonts/TWKLausanne-400.woff2 +0 -0
  54. package/src/assets/fonts/TWKLausanne-500.woff +0 -0
  55. package/src/assets/fonts/TWKLausanne-500.woff2 +0 -0
  56. package/src/assets/fonts/TWKLausanne-600.woff +0 -0
  57. package/src/assets/fonts/TWKLausanne-600.woff2 +0 -0
  58. package/src/assets/vectors/eqtylab.svg +6 -0
  59. package/src/components/app-header.tsx +61 -0
  60. package/src/components/dark-mode-switch.tsx +16 -0
  61. package/src/components/ui/accordion.tsx +47 -0
  62. package/src/components/ui/certificate-chain.tsx +60 -0
  63. package/src/components/ui/certificate-code.tsx +39 -0
  64. package/src/components/ui/details.tsx +20 -0
  65. package/src/components/ui/display-code.tsx +47 -0
  66. package/src/components/ui/panel-label.tsx +12 -0
  67. package/src/components/ui/verify-state-badge.tsx +32 -0
  68. package/src/explorer-component/LineageExplorer.tsx +89 -0
  69. package/src/explorer-component/components/CustomEdge.tsx +28 -0
  70. package/src/explorer-component/components/LineageFlow.tsx +220 -0
  71. package/src/explorer-component/components/NodeIconLoader.tsx +26 -0
  72. package/src/explorer-component/components/nodes/ComputationNode.tsx +56 -0
  73. package/src/explorer-component/components/nodes/CustomNode.tsx +112 -0
  74. package/src/explorer-component/components/nodes/index.ts +4 -0
  75. package/src/explorer-component/components/nodes/nodes.tsx +144 -0
  76. package/src/explorer-component/components/nodes/types.ts +167 -0
  77. package/src/explorer-component/components/sidebar/SectionList.tsx +54 -0
  78. package/src/explorer-component/components/sidebar/SectionTitle.tsx +10 -0
  79. package/src/explorer-component/components/sidebar/Sidebar.tsx +70 -0
  80. package/src/explorer-component/components/sidebar/SidebarWrapper.tsx +76 -0
  81. package/src/explorer-component/components/sidebar/sections/CustomSection.tsx +238 -0
  82. package/src/explorer-component/components/sidebar/sections/FileViewer.tsx +229 -0
  83. package/src/explorer-component/components/sidebar/sections/GovernanceSection.tsx +52 -0
  84. package/src/explorer-component/components/sidebar/sections/RegistrationSection.tsx +254 -0
  85. package/src/explorer-component/components/sidebar/sections/SigstoreSection.tsx +37 -0
  86. package/src/explorer-component/components/sidebar/sections/StorageSection.tsx +73 -0
  87. package/src/explorer-component/components/sidebar/sections/custom/IrohCollectionsView.tsx +139 -0
  88. package/src/explorer-component/components/sidebar/sections/registration/VerificationIcon.tsx +108 -0
  89. package/src/explorer-component/components/sidebar/sections/registration/actor/ActorBadge.tsx +62 -0
  90. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AMDLogo.tsx +40 -0
  91. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/AzureLogo.tsx +65 -0
  92. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/IntelLogo.tsx +24 -0
  93. package/src/explorer-component/components/sidebar/sections/registration/actor/svg/NvidiaLogo.tsx +27 -0
  94. package/src/explorer-component/components/sidebar/sections/registration/verifierClient.ts +13 -0
  95. package/src/explorer-component/icons/AttributionIcon.svg +6 -0
  96. package/src/explorer-component/icons/BenchmarkIcon.svg +6 -0
  97. package/src/explorer-component/icons/BenchmarkResultIcon.svg +6 -0
  98. package/src/explorer-component/icons/CertificateIcon.svg +6 -0
  99. package/src/explorer-component/icons/CodeIcon.svg +6 -0
  100. package/src/explorer-component/icons/ComputationIcon.svg +6 -0
  101. package/src/explorer-component/icons/DataIcon.svg +6 -0
  102. package/src/explorer-component/icons/DatabaseIcon.svg +6 -0
  103. package/src/explorer-component/icons/DatasetIcon.svg +6 -0
  104. package/src/explorer-component/icons/DeltaLakeIcon.svg +7 -0
  105. package/src/explorer-component/icons/DocumentIcon.svg +6 -0
  106. package/src/explorer-component/icons/MediaIcon.svg +6 -0
  107. package/src/explorer-component/icons/ModelIcon.svg +6 -0
  108. package/src/explorer-component/icons/TeamIcon.svg +3 -0
  109. package/src/explorer-component/icons/TokenIcon.svg +6 -0
  110. package/src/explorer-component/icons/UnknownIcon.svg +6 -0
  111. package/src/explorer-component/icons/index.ts +35 -0
  112. package/src/explorer-component/index.ts +5 -0
  113. package/src/explorer-component/integrityTypes/AnchorTypes.ts +31 -0
  114. package/src/explorer-component/integrityTypes/StatementTypes.ts +333 -0
  115. package/src/explorer-component/integrityTypes/VCTypes.ts +85 -0
  116. package/src/explorer-component/integrityTypes/types.ts +3 -0
  117. package/src/explorer-component/utils/config.ts +163 -0
  118. package/src/explorer-component/utils/formatTimestamp.ts +5 -0
  119. package/src/explorer-component/utils/generateGraph.ts +271 -0
  120. package/src/explorer-component/utils/layoutGraph.ts +148 -0
  121. package/src/explorer-component/utils/resolveIrohBlobs.ts +117 -0
  122. package/src/explorer-component/utils/statementHelpers.ts +252 -0
  123. package/src/explorer-component/utils/stripPrefix.ts +4 -0
  124. package/src/hooks/use-mobile.tsx +19 -0
  125. package/src/index.ts +3 -0
  126. package/src/lib/resource-types.ts +31 -0
  127. package/src/lib/use-escape-key.tsx +16 -0
  128. package/src/lib/utils.ts +19 -0
  129. package/src/main.css +82 -0
  130. package/src/main.tsx +39 -0
  131. package/src/v-comp-viewer/components/container-did-details.tsx +53 -0
  132. package/src/v-comp-viewer/components/system-did-details.tsx +356 -0
  133. package/src/v-comp-viewer/useVComp.ts +196 -0
  134. package/src/v-comp-viewer/utils.tsx +824 -0
  135. package/src/vite-env.d.ts +1 -0
  136. package/tsconfig.json +33 -0
  137. package/tsconfig.node.json +10 -0
  138. package/vercel.json +13 -0
  139. package/vite.app.config.ts +48 -0
  140. package/vite.lib.config.ts +61 -0
@@ -0,0 +1,1324 @@
1
+ {
2
+ "version": "2",
3
+ "contexts": {
4
+ "https://w3id.org/security/v1": {
5
+ "@context": {
6
+ "CryptographicKey": "sec:Key",
7
+ "EcdsaKoblitzSignature2016": "sec:EcdsaKoblitzSignature2016",
8
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
9
+ "EncryptedMessage": "sec:EncryptedMessage",
10
+ "GraphSignature2012": "sec:GraphSignature2012",
11
+ "LinkedDataSignature2015": "sec:LinkedDataSignature2015",
12
+ "LinkedDataSignature2016": "sec:LinkedDataSignature2016",
13
+ "authenticationTag": "sec:authenticationTag",
14
+ "canonicalizationAlgorithm": "sec:canonicalizationAlgorithm",
15
+ "cipherAlgorithm": "sec:cipherAlgorithm",
16
+ "cipherData": "sec:cipherData",
17
+ "cipherKey": "sec:cipherKey",
18
+ "created": {
19
+ "@id": "dc:created",
20
+ "@type": "xsd:dateTime"
21
+ },
22
+ "creator": {
23
+ "@id": "dc:creator",
24
+ "@type": "@id"
25
+ },
26
+ "dc": "http://purl.org/dc/terms/",
27
+ "digestAlgorithm": "sec:digestAlgorithm",
28
+ "digestValue": "sec:digestValue",
29
+ "domain": "sec:domain",
30
+ "encryptionKey": "sec:encryptionKey",
31
+ "expiration": {
32
+ "@id": "sec:expiration",
33
+ "@type": "xsd:dateTime"
34
+ },
35
+ "expires": {
36
+ "@id": "sec:expiration",
37
+ "@type": "xsd:dateTime"
38
+ },
39
+ "id": "@id",
40
+ "initializationVector": "sec:initializationVector",
41
+ "iterationCount": "sec:iterationCount",
42
+ "nonce": "sec:nonce",
43
+ "normalizationAlgorithm": "sec:normalizationAlgorithm",
44
+ "owner": {
45
+ "@id": "sec:owner",
46
+ "@type": "@id"
47
+ },
48
+ "password": "sec:password",
49
+ "privateKey": {
50
+ "@id": "sec:privateKey",
51
+ "@type": "@id"
52
+ },
53
+ "privateKeyPem": "sec:privateKeyPem",
54
+ "publicKey": {
55
+ "@id": "sec:publicKey",
56
+ "@type": "@id"
57
+ },
58
+ "publicKeyBase58": "sec:publicKeyBase58",
59
+ "publicKeyPem": "sec:publicKeyPem",
60
+ "publicKeyService": {
61
+ "@id": "sec:publicKeyService",
62
+ "@type": "@id"
63
+ },
64
+ "publicKeyWif": "sec:publicKeyWif",
65
+ "revoked": {
66
+ "@id": "sec:revoked",
67
+ "@type": "xsd:dateTime"
68
+ },
69
+ "salt": "sec:salt",
70
+ "sec": "https://w3id.org/security#",
71
+ "signature": "sec:signature",
72
+ "signatureAlgorithm": "sec:signingAlgorithm",
73
+ "signatureValue": "sec:signatureValue",
74
+ "type": "@type",
75
+ "xsd": "http://www.w3.org/2001/XMLSchema#"
76
+ }
77
+ },
78
+ "https://www.w3.org/ns/credentials/v2": {
79
+ "@context": {
80
+ "...": {
81
+ "@id": "https://www.iana.org/assignments/jwt#..."
82
+ },
83
+ "@protected": true,
84
+ "@vocab": "https://www.w3.org/ns/credentials/issuer-dependent#",
85
+ "DataIntegrityProof": {
86
+ "@context": {
87
+ "@protected": true,
88
+ "challenge": "https://w3id.org/security#challenge",
89
+ "created": {
90
+ "@id": "http://purl.org/dc/terms/created",
91
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
92
+ },
93
+ "cryptosuite": {
94
+ "@id": "https://w3id.org/security#cryptosuite",
95
+ "@type": "https://w3id.org/security#cryptosuiteString"
96
+ },
97
+ "domain": "https://w3id.org/security#domain",
98
+ "expires": {
99
+ "@id": "https://w3id.org/security#expiration",
100
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
101
+ },
102
+ "id": "@id",
103
+ "nonce": "https://w3id.org/security#nonce",
104
+ "previousProof": {
105
+ "@id": "https://w3id.org/security#previousProof",
106
+ "@type": "@id"
107
+ },
108
+ "proofPurpose": {
109
+ "@context": {
110
+ "@protected": true,
111
+ "assertionMethod": {
112
+ "@container": "@set",
113
+ "@id": "https://w3id.org/security#assertionMethod",
114
+ "@type": "@id"
115
+ },
116
+ "authentication": {
117
+ "@container": "@set",
118
+ "@id": "https://w3id.org/security#authenticationMethod",
119
+ "@type": "@id"
120
+ },
121
+ "capabilityDelegation": {
122
+ "@container": "@set",
123
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
124
+ "@type": "@id"
125
+ },
126
+ "capabilityInvocation": {
127
+ "@container": "@set",
128
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
129
+ "@type": "@id"
130
+ },
131
+ "id": "@id",
132
+ "keyAgreement": {
133
+ "@container": "@set",
134
+ "@id": "https://w3id.org/security#keyAgreementMethod",
135
+ "@type": "@id"
136
+ },
137
+ "type": "@type"
138
+ },
139
+ "@id": "https://w3id.org/security#proofPurpose",
140
+ "@type": "@vocab"
141
+ },
142
+ "proofValue": {
143
+ "@id": "https://w3id.org/security#proofValue",
144
+ "@type": "https://w3id.org/security#multibase"
145
+ },
146
+ "type": "@type",
147
+ "verificationMethod": {
148
+ "@id": "https://w3id.org/security#verificationMethod",
149
+ "@type": "@id"
150
+ }
151
+ },
152
+ "@id": "https://w3id.org/security#DataIntegrityProof"
153
+ },
154
+ "JsonSchema": {
155
+ "@context": {
156
+ "@protected": true,
157
+ "id": "@id",
158
+ "jsonSchema": {
159
+ "@id": "https://w3.org/2018/credentials#jsonSchema",
160
+ "@type": "@json"
161
+ },
162
+ "type": "@type"
163
+ },
164
+ "@id": "https://w3.org/2018/credentials#JsonSchema"
165
+ },
166
+ "JsonSchemaCredential": "https://w3.org/2018/credentials#JsonSchemaCredential",
167
+ "StatusList2021": {
168
+ "@context": {
169
+ "@protected": true,
170
+ "encodedList": "https://w3id.org/vc/status-list#encodedList",
171
+ "id": "@id",
172
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
173
+ "type": "@type"
174
+ },
175
+ "@id": "https://w3id.org/vc/status-list#StatusList2021"
176
+ },
177
+ "StatusList2021Credential": {
178
+ "@context": {
179
+ "@protected": true,
180
+ "description": "https://schema.org/description",
181
+ "id": "@id",
182
+ "name": "https://schema.org/name",
183
+ "type": "@type"
184
+ },
185
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Credential"
186
+ },
187
+ "StatusList2021Entry": {
188
+ "@context": {
189
+ "@protected": true,
190
+ "id": "@id",
191
+ "statusListCredential": {
192
+ "@id": "https://w3id.org/vc/status-list#statusListCredential",
193
+ "@type": "@id"
194
+ },
195
+ "statusListIndex": "https://w3id.org/vc/status-list#statusListIndex",
196
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
197
+ "type": "@type"
198
+ },
199
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Entry"
200
+ },
201
+ "VerifiableCredential": {
202
+ "@context": {
203
+ "@protected": true,
204
+ "confidenceMethod": {
205
+ "@id": "https://www.w3.org/2018/credentials#confidenceMethod",
206
+ "@type": "@id"
207
+ },
208
+ "credentialSchema": {
209
+ "@id": "https://www.w3.org/2018/credentials#credentialSchema",
210
+ "@type": "@id"
211
+ },
212
+ "credentialStatus": {
213
+ "@id": "https://www.w3.org/2018/credentials#credentialStatus",
214
+ "@type": "@id"
215
+ },
216
+ "credentialSubject": {
217
+ "@id": "https://www.w3.org/2018/credentials#credentialSubject",
218
+ "@type": "@id"
219
+ },
220
+ "description": {
221
+ "@context": {
222
+ "dir": "@direction",
223
+ "lang": "@language",
224
+ "value": "@value"
225
+ },
226
+ "@id": "https://schema.org/description"
227
+ },
228
+ "evidence": {
229
+ "@id": "https://www.w3.org/2018/credentials#evidence",
230
+ "@type": "@id"
231
+ },
232
+ "id": "@id",
233
+ "issuer": {
234
+ "@context": {
235
+ "@protected": true,
236
+ "description": {
237
+ "@context": {
238
+ "dir": "@direction",
239
+ "lang": "@language",
240
+ "value": "@value"
241
+ },
242
+ "@id": "https://schema.org/description"
243
+ },
244
+ "id": "@id",
245
+ "name": {
246
+ "@context": {
247
+ "dir": "@direction",
248
+ "lang": "@language",
249
+ "value": "@value"
250
+ },
251
+ "@id": "https://schema.org/name"
252
+ },
253
+ "type": "@type"
254
+ },
255
+ "@id": "https://www.w3.org/2018/credentials#issuer",
256
+ "@type": "@id"
257
+ },
258
+ "name": {
259
+ "@context": {
260
+ "dir": "@direction",
261
+ "lang": "@language",
262
+ "value": "@value"
263
+ },
264
+ "@id": "https://schema.org/name"
265
+ },
266
+ "proof": {
267
+ "@container": "@graph",
268
+ "@id": "https://w3id.org/security#proof",
269
+ "@type": "@id"
270
+ },
271
+ "refreshService": {
272
+ "@id": "https://www.w3.org/2018/credentials#refreshService",
273
+ "@type": "@id"
274
+ },
275
+ "relatedResource": {
276
+ "@id": "https://www.w3.org/2018/credentials#relatedResource",
277
+ "@type": "@id"
278
+ },
279
+ "termsOfUse": {
280
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
281
+ "@type": "@id"
282
+ },
283
+ "type": "@type",
284
+ "validFrom": {
285
+ "@id": "https://www.w3.org/2018/credentials#validFrom",
286
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
287
+ },
288
+ "validUntil": {
289
+ "@id": "https://www.w3.org/2018/credentials#validUntil",
290
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
291
+ }
292
+ },
293
+ "@id": "https://www.w3.org/2018/credentials#VerifiableCredential"
294
+ },
295
+ "VerifiablePresentation": {
296
+ "@context": {
297
+ "@protected": true,
298
+ "holder": {
299
+ "@id": "https://www.w3.org/2018/credentials#holder",
300
+ "@type": "@id"
301
+ },
302
+ "id": "@id",
303
+ "proof": {
304
+ "@container": "@graph",
305
+ "@id": "https://w3id.org/security#proof",
306
+ "@type": "@id"
307
+ },
308
+ "termsOfUse": {
309
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
310
+ "@type": "@id"
311
+ },
312
+ "type": "@type",
313
+ "verifiableCredential": {
314
+ "@container": "@graph",
315
+ "@context": null,
316
+ "@id": "https://www.w3.org/2018/credentials#verifiableCredential",
317
+ "@type": "@id"
318
+ }
319
+ },
320
+ "@id": "https://www.w3.org/2018/credentials#VerifiablePresentation"
321
+ },
322
+ "_sd": {
323
+ "@id": "https://www.iana.org/assignments/jwt#_sd"
324
+ },
325
+ "_sd_alg": {
326
+ "@id": "https://www.iana.org/assignments/jwt#_sd_alg"
327
+ },
328
+ "aud": {
329
+ "@id": "https://www.iana.org/assignments/jwt#aud",
330
+ "@type": "@id"
331
+ },
332
+ "cnf": {
333
+ "@context": {
334
+ "@protected": true,
335
+ "jwk": {
336
+ "@id": "https://www.iana.org/assignments/jwt#jwk",
337
+ "@type": "@json"
338
+ },
339
+ "kid": {
340
+ "@id": "https://www.iana.org/assignments/jwt#kid",
341
+ "@type": "@id"
342
+ }
343
+ },
344
+ "@id": "https://www.iana.org/assignments/jwt#cnf"
345
+ },
346
+ "digestSRI": {
347
+ "@id": "https://www.w3.org/2018/credentials#digestSRI",
348
+ "@type": "https://www.w3.org/2018/credentials#sriString"
349
+ },
350
+ "exp": {
351
+ "@id": "https://www.iana.org/assignments/jwt#exp",
352
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
353
+ },
354
+ "iat": {
355
+ "@id": "https://www.iana.org/assignments/jwt#iat",
356
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
357
+ },
358
+ "id": "@id",
359
+ "iss": {
360
+ "@id": "https://www.iana.org/assignments/jose#iss",
361
+ "@type": "@id"
362
+ },
363
+ "jku": {
364
+ "@id": "https://www.iana.org/assignments/jose#jku",
365
+ "@type": "@id"
366
+ },
367
+ "kid": {
368
+ "@id": "https://www.iana.org/assignments/jose#kid",
369
+ "@type": "@id"
370
+ },
371
+ "mediaType": {
372
+ "@id": "https://schema.org/encodingFormat"
373
+ },
374
+ "nbf": {
375
+ "@id": "https://www.iana.org/assignments/jwt#nbf",
376
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
377
+ },
378
+ "sub": {
379
+ "@id": "https://www.iana.org/assignments/jose#sub",
380
+ "@type": "@id"
381
+ },
382
+ "type": "@type",
383
+ "x5u": {
384
+ "@id": "https://www.iana.org/assignments/jose#x5u",
385
+ "@type": "@id"
386
+ }
387
+ }
388
+ },
389
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y": {
390
+ "@context": {
391
+ "@protected": true,
392
+ "EqtyVCompAmdSevV1": {
393
+ "@context": {
394
+ "measurement": {
395
+ "@id": "https://eqtylab.io/terms/measurement",
396
+ "@type": "xsd:string"
397
+ },
398
+ "measurementInfo": {
399
+ "@context": {
400
+ "append": {
401
+ "@context": {
402
+ "sha256": {
403
+ "@id": "https://eqtylab.io/terms/sha256",
404
+ "@type": "xsd:string"
405
+ },
406
+ "value": {
407
+ "@id": "https://eqtylab.io/terms/value",
408
+ "@type": "xsd:string"
409
+ }
410
+ },
411
+ "@id": "https://eqtylab.io/terms/append",
412
+ "@type": "@id"
413
+ },
414
+ "cpuType": {
415
+ "@id": "https://eqtylab.io/terms/cpuType",
416
+ "@type": "xsd:string"
417
+ },
418
+ "initrd": {
419
+ "@context": {
420
+ "sha256": {
421
+ "@id": "https://eqtylab.io/terms/sha256",
422
+ "@type": "xsd:string"
423
+ }
424
+ },
425
+ "@id": "https://eqtylab.io/terms/initrd",
426
+ "@type": "@id"
427
+ },
428
+ "kernel": {
429
+ "@context": {
430
+ "sha256": {
431
+ "@id": "https://eqtylab.io/terms/sha256",
432
+ "@type": "xsd:string"
433
+ }
434
+ },
435
+ "@id": "https://eqtylab.io/terms/kernel",
436
+ "@type": "@id"
437
+ },
438
+ "numCpuCores": {
439
+ "@id": "https://eqtylab.io/terms/numCpuCores",
440
+ "@type": "xsd:integer"
441
+ },
442
+ "ovmf": {
443
+ "@context": {
444
+ "sha256": {
445
+ "@id": "https://eqtylab.io/terms/sha256",
446
+ "@type": "xsd:string"
447
+ }
448
+ },
449
+ "@id": "https://eqtylab.io/terms/ovmf",
450
+ "@type": "@id"
451
+ },
452
+ "rootfs": {
453
+ "@context": {
454
+ "sha256": {
455
+ "@id": "https://eqtylab.io/terms/sha256",
456
+ "@type": "xsd:string"
457
+ }
458
+ },
459
+ "@id": "https://eqtylab.io/terms/rootfs",
460
+ "@type": "@id"
461
+ },
462
+ "sevMode": {
463
+ "@id": "https://eqtylab.io/terms/sevMode",
464
+ "@type": "xsd:string"
465
+ }
466
+ },
467
+ "@id": "https://eqtylab.io/terms/measurementInfo"
468
+ }
469
+ },
470
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1"
471
+ },
472
+ "EqtyVCompAmdSevV1Evidence": {
473
+ "@context": {
474
+ "certificateChain": {
475
+ "@id": "https://eqtylab.io/terms/certificateChain",
476
+ "@type": "@id"
477
+ },
478
+ "report": {
479
+ "@id": "https://eqtylab.io/terms/report",
480
+ "@type": "@id"
481
+ }
482
+ },
483
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1Evidence"
484
+ },
485
+ "EqtyVCompAzureV1": {
486
+ "@context": {
487
+ "measurement": {
488
+ "@context": {
489
+ "firmware": {
490
+ "@id": "https://eqtylab.io/terms/firmware",
491
+ "@type": "xsd:string"
492
+ },
493
+ "pcr11": {
494
+ "@id": "https://eqtylab.io/terms/pcr11",
495
+ "@type": "xsd:string"
496
+ }
497
+ },
498
+ "@id": "https://eqtylab.io/terms/measurement"
499
+ },
500
+ "measurementInfo": {
501
+ "@context": {
502
+ "append": {
503
+ "@context": {
504
+ "sha384": {
505
+ "@id": "https://eqtylab.io/terms/sha384",
506
+ "@type": "xsd:string"
507
+ },
508
+ "value": {
509
+ "@id": "https://eqtylab.io/terms/value",
510
+ "@type": "xsd:string"
511
+ }
512
+ },
513
+ "@id": "https://eqtylab.io/terms/append",
514
+ "@type": "@id"
515
+ },
516
+ "initrd": {
517
+ "@context": {
518
+ "parts": {
519
+ "@id": "https://eqtylab.io/terms/parts",
520
+ "@type": "@id"
521
+ },
522
+ "sha384": {
523
+ "@id": "https://eqtylab.io/terms/sha384",
524
+ "@type": "xsd:string"
525
+ }
526
+ },
527
+ "@id": "https://eqtylab.io/terms/initrd",
528
+ "@type": "@id"
529
+ },
530
+ "kernel": {
531
+ "@context": {
532
+ "sha384": {
533
+ "@id": "https://eqtylab.io/terms/sha384",
534
+ "@type": "xsd:string"
535
+ }
536
+ },
537
+ "@id": "https://eqtylab.io/terms/kernel",
538
+ "@type": "@id"
539
+ },
540
+ "rootfs": {
541
+ "@context": {
542
+ "sha256": {
543
+ "@id": "https://eqtylab.io/terms/sha256",
544
+ "@type": "xsd:string"
545
+ }
546
+ },
547
+ "@id": "https://eqtylab.io/terms/rootfs",
548
+ "@type": "@id"
549
+ },
550
+ "uki": {
551
+ "@id": "https://eqtylab.io/terms/uki",
552
+ "@type": "@id"
553
+ }
554
+ },
555
+ "@id": "https://eqtylab.io/terms/measurementInfo"
556
+ }
557
+ },
558
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1"
559
+ },
560
+ "EqtyVCompAzureV1Evidence": {
561
+ "@context": {
562
+ "azureBootLog": {
563
+ "@id": "https://eqtylab.io/terms/azureBootLog",
564
+ "@type": "@id"
565
+ },
566
+ "report": {
567
+ "@id": "https://eqtylab.io/terms/report",
568
+ "@type": "@id"
569
+ },
570
+ "reportCertificateChain": {
571
+ "@id": "https://eqtylab.io/terms/reportCertificateChain",
572
+ "@type": "@id"
573
+ },
574
+ "reportType": {
575
+ "@id": "https://eqtylab.io/terms/reportType",
576
+ "@type": "xsd:string"
577
+ },
578
+ "tpmAKCertificate": {
579
+ "@id": "https://eqtylab.io/terms/tpmAKCertificate",
580
+ "@type": "@id"
581
+ },
582
+ "tpmLog": {
583
+ "@id": "https://eqtylab.io/terms/tpmLog",
584
+ "@type": "@id"
585
+ },
586
+ "tpmQuote": {
587
+ "@id": "https://eqtylab.io/terms/tpmQuote",
588
+ "@type": "@id"
589
+ },
590
+ "tpmQuoteSignature": {
591
+ "@id": "https://eqtylab.io/terms/tpmQuoteSignature",
592
+ "@type": "@id"
593
+ }
594
+ },
595
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1Evidence"
596
+ },
597
+ "EqtyVCompDockerV1": {
598
+ "@context": {
599
+ "compose": {
600
+ "@id": "https://eqtylab.io/terms/compose",
601
+ "@type": "@id"
602
+ },
603
+ "executedOn": {
604
+ "@id": "https://eqtylab.io/terms/executedOn"
605
+ },
606
+ "image": {
607
+ "@context": {
608
+ "name": {
609
+ "@id": "https://eqtylab.io/terms/name",
610
+ "@type": "xsd:string"
611
+ },
612
+ "sha256": {
613
+ "@id": "https://eqtylab.io/terms/sha256",
614
+ "@type": "xsd:string"
615
+ }
616
+ },
617
+ "@id": "https://eqtylab.io/terms/image"
618
+ },
619
+ "operatedBy": {
620
+ "@id": "https://eqtylab.io/terms/operatedBy"
621
+ }
622
+ },
623
+ "@id": "https://eqtylab.io/terms/EqtyVCompDockerV1"
624
+ },
625
+ "EqtyVCompIntelTdxV0": {
626
+ "@context": {
627
+ "measurement": {
628
+ "@id": "https://eqtylab.io/terms/measurements",
629
+ "@type": "xsd:string"
630
+ },
631
+ "measurementInfo": {
632
+ "@context": {
633
+ "append": {
634
+ "@context": {
635
+ "sha384": {
636
+ "@id": "https://eqtylab.io/terms/sha384",
637
+ "@type": "xsd:string"
638
+ },
639
+ "value": {
640
+ "@id": "https://eqtylab.io/terms/value",
641
+ "@type": "xsd:string"
642
+ }
643
+ },
644
+ "@id": "https://eqtylab.io/terms/append",
645
+ "@type": "@id"
646
+ },
647
+ "initrd": {
648
+ "@context": {
649
+ "sha384": {
650
+ "@id": "https://eqtylab.io/terms/sha384",
651
+ "@type": "xsd:string"
652
+ }
653
+ },
654
+ "@id": "https://eqtylab.io/terms/initrd",
655
+ "@type": "@id"
656
+ },
657
+ "kernel": {
658
+ "@context": {
659
+ "sha384": {
660
+ "@id": "https://eqtylab.io/terms/sha384",
661
+ "@type": "xsd:string"
662
+ }
663
+ },
664
+ "@id": "https://eqtylab.io/terms/kernel",
665
+ "@type": "@id"
666
+ },
667
+ "ovmf": {
668
+ "@context": {
669
+ "sha384": {
670
+ "@id": "https://eqtylab.io/terms/sha384",
671
+ "@type": "xsd:string"
672
+ }
673
+ },
674
+ "@id": "https://eqtylab.io/terms/ovmf",
675
+ "@type": "@id"
676
+ },
677
+ "rootfs": {
678
+ "@context": {
679
+ "sha256": {
680
+ "@id": "https://eqtylab.io/terms/sha256",
681
+ "@type": "xsd:string"
682
+ }
683
+ },
684
+ "@id": "https://eqtylab.io/terms/rootfs",
685
+ "@type": "@id"
686
+ }
687
+ },
688
+ "@id": "https://eqtylab.io/terms/measurementInfo"
689
+ }
690
+ },
691
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0"
692
+ },
693
+ "EqtyVCompIntelTdxV0Evidence": {
694
+ "@context": {
695
+ "certificateChain": {
696
+ "@id": "https://eqtylab.io/terms/certificateChain",
697
+ "@type": "@id"
698
+ },
699
+ "report": {
700
+ "@id": "https://eqtylab.io/terms/report",
701
+ "@type": "@id"
702
+ }
703
+ },
704
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0Evidence"
705
+ },
706
+ "EqtyVCompNvidiaCcV0Evidence": {
707
+ "@context": {
708
+ "certificateChain": {
709
+ "@id": "https://eqtylab.io/terms/certificateChain",
710
+ "@type": "@id"
711
+ },
712
+ "report": {
713
+ "@id": "https://eqtylab.io/terms/report",
714
+ "@type": "@id"
715
+ }
716
+ },
717
+ "@id": "https://eqtylab.io/terms/EqtyVCompNvidiaCcV0Evidence"
718
+ },
719
+ "vcomp": {
720
+ "@id": "https://eqtylab.io/terms/vcomp"
721
+ }
722
+ }
723
+ },
724
+ "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq": {
725
+ "@context": [
726
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y",
727
+ {
728
+ "@protected": true,
729
+ "AssociationRegistration": {
730
+ "@context": {
731
+ "association": {
732
+ "@id": "https://eqtylab.io/terms/association",
733
+ "@type": "@id"
734
+ },
735
+ "subject": {
736
+ "@id": "https://eqtylab.io/terms/subject",
737
+ "@type": "@id"
738
+ }
739
+ },
740
+ "@id": "https://eqtylab.io/terms/AssociationRegistration"
741
+ },
742
+ "ComputationRegistration": {
743
+ "@context": {
744
+ "computation": {
745
+ "@id": "https://eqtylab.io/terms/computation",
746
+ "@type": "@id"
747
+ },
748
+ "executedOn": {
749
+ "@id": "https://eqtylab.io/terms/executedOn"
750
+ },
751
+ "input": {
752
+ "@id": "https://eqtylab.io/terms/input",
753
+ "@type": "@id"
754
+ },
755
+ "operatedBy": {
756
+ "@id": "https://eqtylab.io/terms/operatedBy"
757
+ },
758
+ "output": {
759
+ "@id": "https://eqtylab.io/terms/output",
760
+ "@type": "@id"
761
+ }
762
+ },
763
+ "@id": "https://eqtylab.io/terms/ComputationRegistration"
764
+ },
765
+ "CredentialRegistration": {
766
+ "@context": {
767
+ "credential": {
768
+ "@id": "https://eqtylab.io/terms/credential"
769
+ },
770
+ "credentialDsse": {
771
+ "@context": {
772
+ "payload": {
773
+ "@id": "https://eqtylab.io/terms/payload",
774
+ "@type": "xsd:string"
775
+ },
776
+ "payloadType": {
777
+ "@id": "https://eqtylab.io/terms/payloadType",
778
+ "@type": "xsd:string"
779
+ },
780
+ "signatures": {
781
+ "@context": {
782
+ "keyid": {
783
+ "@id": "https://eqtylab.io/terms/keyid",
784
+ "@type": "xsd:string"
785
+ },
786
+ "sig": {
787
+ "@id": "https://eqtylab.io/terms/keyid",
788
+ "@type": "xsd:string"
789
+ }
790
+ },
791
+ "@id": "https://eqtylab.io/terms/signatures"
792
+ }
793
+ },
794
+ "@id": "https://eqtylab.io/terms/credentialDsse"
795
+ }
796
+ },
797
+ "@id": "https://eqtylab.io/terms/CredentialRegistration"
798
+ },
799
+ "DataRegistration": {
800
+ "@context": {
801
+ "data": {
802
+ "@id": "https://eqtylab.io/terms/data",
803
+ "@type": "@id"
804
+ }
805
+ },
806
+ "@id": "https://eqtylab.io/terms/DataRegistration"
807
+ },
808
+ "DidRegistration": {
809
+ "@context": {
810
+ "did": {
811
+ "@id": "https://eqtylab.io/terms/did"
812
+ }
813
+ },
814
+ "@id": "https://eqtylab.io/terms/DidRegistration"
815
+ },
816
+ "EntityRegistration": {
817
+ "@context": {
818
+ "entity": {
819
+ "@id": "https://eqtylab.io/terms/entity",
820
+ "@type": "@id"
821
+ }
822
+ },
823
+ "@id": "https://eqtylab.io/terms/EntityRegistration"
824
+ },
825
+ "GovernanceRegistration": {
826
+ "@context": {
827
+ "document": {
828
+ "@id": "https://eqtylab.io/terms/document",
829
+ "@type": "@id"
830
+ },
831
+ "subject": {
832
+ "@id": "https://eqtylab.io/terms/subject",
833
+ "@type": "@id"
834
+ }
835
+ },
836
+ "@id": "https://eqtylab.io/terms/GovernanceRegistration"
837
+ },
838
+ "MetadataRegistration": {
839
+ "@context": {
840
+ "metadata": {
841
+ "@id": "https://eqtylab.io/terms/metadata",
842
+ "@type": "@id"
843
+ },
844
+ "subject": {
845
+ "@id": "https://eqtylab.io/terms/subject",
846
+ "@type": "@id"
847
+ }
848
+ },
849
+ "@id": "https://eqtylab.io/terms/MetadataRegistration"
850
+ },
851
+ "StorageRegistration": {
852
+ "@context": {
853
+ "data": {
854
+ "@id": "https://eqtylab.io/terms/data",
855
+ "@type": "@id"
856
+ },
857
+ "operatedBy": {
858
+ "@id": "https://eqtylab.io/terms/operatedBy"
859
+ },
860
+ "storedOn": {
861
+ "@id": "https://eqtylab.io/terms/storedOn",
862
+ "@type": "@id"
863
+ }
864
+ },
865
+ "@id": "https://eqtylab.io/terms/StorageRegistration"
866
+ },
867
+ "registeredBy": {
868
+ "@id": "https://eqtylab.io/terms/registeredBy"
869
+ },
870
+ "timestamp": {
871
+ "@id": "https://eqtylab.io/terms/timestamp",
872
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
873
+ }
874
+ }
875
+ ]
876
+ },
877
+ "https://w3id.org/security/v2": {
878
+ "@context": [
879
+ {
880
+ "@version": 1.1
881
+ },
882
+ "https://w3id.org/security/v1",
883
+ {
884
+ "AesKeyWrappingKey2019": "sec:AesKeyWrappingKey2019",
885
+ "DeleteKeyOperation": "sec:DeleteKeyOperation",
886
+ "DeriveSecretOperation": "sec:DeriveSecretOperation",
887
+ "EcdsaSecp256k1Signature2019": "sec:EcdsaSecp256k1Signature2019",
888
+ "EcdsaSecp256k1VerificationKey2019": "sec:EcdsaSecp256k1VerificationKey2019",
889
+ "EcdsaSecp256r1Signature2019": "sec:EcdsaSecp256r1Signature2019",
890
+ "EcdsaSecp256r1VerificationKey2019": "sec:EcdsaSecp256r1VerificationKey2019",
891
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
892
+ "Ed25519VerificationKey2018": "sec:Ed25519VerificationKey2018",
893
+ "EquihashProof2018": "sec:EquihashProof2018",
894
+ "ExportKeyOperation": "sec:ExportKeyOperation",
895
+ "GenerateKeyOperation": "sec:GenerateKeyOperation",
896
+ "KmsOperation": "sec:KmsOperation",
897
+ "RevokeKeyOperation": "sec:RevokeKeyOperation",
898
+ "RsaSignature2018": "sec:RsaSignature2018",
899
+ "RsaVerificationKey2018": "sec:RsaVerificationKey2018",
900
+ "Sha256HmacKey2019": "sec:Sha256HmacKey2019",
901
+ "SignOperation": "sec:SignOperation",
902
+ "UnwrapKeyOperation": "sec:UnwrapKeyOperation",
903
+ "VerifyOperation": "sec:VerifyOperation",
904
+ "WrapKeyOperation": "sec:WrapKeyOperation",
905
+ "X25519KeyAgreementKey2019": "sec:X25519KeyAgreementKey2019",
906
+ "allowedAction": "sec:allowedAction",
907
+ "assertionMethod": {
908
+ "@container": "@set",
909
+ "@id": "sec:assertionMethod",
910
+ "@type": "@id"
911
+ },
912
+ "authentication": {
913
+ "@container": "@set",
914
+ "@id": "sec:authenticationMethod",
915
+ "@type": "@id"
916
+ },
917
+ "capability": {
918
+ "@id": "sec:capability",
919
+ "@type": "@id"
920
+ },
921
+ "capabilityAction": "sec:capabilityAction",
922
+ "capabilityChain": {
923
+ "@container": "@list",
924
+ "@id": "sec:capabilityChain",
925
+ "@type": "@id"
926
+ },
927
+ "capabilityDelegation": {
928
+ "@container": "@set",
929
+ "@id": "sec:capabilityDelegationMethod",
930
+ "@type": "@id"
931
+ },
932
+ "capabilityInvocation": {
933
+ "@container": "@set",
934
+ "@id": "sec:capabilityInvocationMethod",
935
+ "@type": "@id"
936
+ },
937
+ "caveat": {
938
+ "@container": "@set",
939
+ "@id": "sec:caveat",
940
+ "@type": "@id"
941
+ },
942
+ "challenge": "sec:challenge",
943
+ "ciphertext": "sec:ciphertext",
944
+ "controller": {
945
+ "@id": "sec:controller",
946
+ "@type": "@id"
947
+ },
948
+ "delegator": {
949
+ "@id": "sec:delegator",
950
+ "@type": "@id"
951
+ },
952
+ "equihashParameterK": {
953
+ "@id": "sec:equihashParameterK",
954
+ "@type": "xsd:integer"
955
+ },
956
+ "equihashParameterN": {
957
+ "@id": "sec:equihashParameterN",
958
+ "@type": "xsd:integer"
959
+ },
960
+ "invocationTarget": {
961
+ "@id": "sec:invocationTarget",
962
+ "@type": "@id"
963
+ },
964
+ "invoker": {
965
+ "@id": "sec:invoker",
966
+ "@type": "@id"
967
+ },
968
+ "jws": "sec:jws",
969
+ "keyAgreement": {
970
+ "@container": "@set",
971
+ "@id": "sec:keyAgreementMethod",
972
+ "@type": "@id"
973
+ },
974
+ "kmsModule": {
975
+ "@id": "sec:kmsModule"
976
+ },
977
+ "parentCapability": {
978
+ "@id": "sec:parentCapability",
979
+ "@type": "@id"
980
+ },
981
+ "plaintext": "sec:plaintext",
982
+ "proof": {
983
+ "@container": "@graph",
984
+ "@id": "sec:proof",
985
+ "@type": "@id"
986
+ },
987
+ "proofPurpose": {
988
+ "@id": "sec:proofPurpose",
989
+ "@type": "@vocab"
990
+ },
991
+ "proofValue": "sec:proofValue",
992
+ "referenceId": "sec:referenceId",
993
+ "unwrappedKey": "sec:unwrappedKey",
994
+ "verificationMethod": {
995
+ "@id": "sec:verificationMethod",
996
+ "@type": "@id"
997
+ },
998
+ "verifyData": "sec:verifyData",
999
+ "wrappedKey": "sec:wrappedKey"
1000
+ }
1001
+ ]
1002
+ }
1003
+ },
1004
+ "statements": {
1005
+ "urn:cid:bagb6qaq6ec6nftpp4ore542se3se4vwu7hzgxbfbtxkwzs2u5tqjbkf4ys7i4": {
1006
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1007
+ "@id": "urn:cid:bagb6qaq6ec6nftpp4ore542se3se4vwu7hzgxbfbtxkwzs2u5tqjbkf4ys7i4",
1008
+ "@type": "CredentialRegistration",
1009
+ "credential": {
1010
+ "@context": [
1011
+ "https://www.w3.org/ns/credentials/v2",
1012
+ "https://w3id.org/security/v2"
1013
+ ],
1014
+ "id": "urn:uuid:28aabb0b-272f-476d-8585-403513b0861f",
1015
+ "type": [
1016
+ "VerifiableCredential"
1017
+ ],
1018
+ "credentialSubject": {
1019
+ "id": "urn:cid:bagb6qaq6ebdwus6khp3qufhw7t3qlu3ql5tn5s4ueax3qko57fpy4f5zafr5q"
1020
+ },
1021
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1022
+ "issuanceDate": "2025-10-02T19:03:38Z",
1023
+ "proof": {
1024
+ "type": "Ed25519Signature2018",
1025
+ "proofPurpose": "assertionMethod",
1026
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1027
+ "created": "2025-10-02T19:03:38Z",
1028
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9.._K7arWEtkKeRstrxbSPxRxwZzvS0A2OrFJpf60MZM4dxDBH-2RkmIBzRD6rf6tW5ybS1kQqROGiQN4EWdq6sCg"
1029
+ },
1030
+ "validFrom": "2025-10-02T19:03:38Z"
1031
+ },
1032
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1033
+ "timestamp": "2025-10-02T19:03:38Z"
1034
+ },
1035
+ "urn:cid:bagb6qaq6eao23veiu6ik6b3x6fqw6xwjr7dkvalgrqgw34wb3qce6rtotya5a": {
1036
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1037
+ "@id": "urn:cid:bagb6qaq6eao23veiu6ik6b3x6fqw6xwjr7dkvalgrqgw34wb3qce6rtotya5a",
1038
+ "@type": "CredentialRegistration",
1039
+ "credential": {
1040
+ "@context": [
1041
+ "https://www.w3.org/ns/credentials/v2",
1042
+ "https://w3id.org/security/v2"
1043
+ ],
1044
+ "id": "urn:uuid:45a22a86-ed0f-4cdb-aee0-93cddf4e1dca",
1045
+ "type": [
1046
+ "VerifiableCredential"
1047
+ ],
1048
+ "credentialSubject": {
1049
+ "id": "urn:cid:bagb6qaq6ebaos2fe6jqexqs6esccc2aowd2ytcc3e4rjjsoev42eaxzbtq4uk"
1050
+ },
1051
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1052
+ "issuanceDate": "2025-10-02T19:03:38Z",
1053
+ "proof": {
1054
+ "type": "Ed25519Signature2018",
1055
+ "proofPurpose": "assertionMethod",
1056
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1057
+ "created": "2025-10-02T19:03:38Z",
1058
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..jyM4UKA64_KhV8CCXeSSUAicqF8M6L2V3ZH3BK2K-_SqG6VvaKVmdX4KostAc0nMIXulY58lPzC-KjxPCFDECw"
1059
+ },
1060
+ "validFrom": "2025-10-02T19:03:38Z"
1061
+ },
1062
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1063
+ "timestamp": "2025-10-02T19:03:38Z"
1064
+ },
1065
+ "urn:cid:bagb6qaq6ebqiw536pweodxbwliasr3bdigv6xshe5qqgs35t7nhnixgklej4q": {
1066
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1067
+ "@id": "urn:cid:bagb6qaq6ebqiw536pweodxbwliasr3bdigv6xshe5qqgs35t7nhnixgklej4q",
1068
+ "@type": "DataRegistration",
1069
+ "data": "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q",
1070
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1071
+ "timestamp": "2025-10-02T19:03:38Z"
1072
+ },
1073
+ "urn:cid:bagb6qaq6edvaiib7oayhubvxz5kykt2aeydsgasmynej3smipdon7tye2apvk": {
1074
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1075
+ "@id": "urn:cid:bagb6qaq6edvaiib7oayhubvxz5kykt2aeydsgasmynej3smipdon7tye2apvk",
1076
+ "@type": "CredentialRegistration",
1077
+ "credential": {
1078
+ "@context": [
1079
+ "https://www.w3.org/ns/credentials/v2",
1080
+ "https://w3id.org/security/v2"
1081
+ ],
1082
+ "id": "urn:uuid:2f05fbf6-089f-48a0-94fe-03d2038d5767",
1083
+ "type": [
1084
+ "VerifiableCredential"
1085
+ ],
1086
+ "credentialSubject": {
1087
+ "id": "urn:cid:bagb6qaq6eceu7t4w7yuh7zoyhkpguk56st5idxyiajbuwpdi5p4pxu2vwmkos"
1088
+ },
1089
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1090
+ "issuanceDate": "2025-10-02T19:03:38Z",
1091
+ "proof": {
1092
+ "type": "Ed25519Signature2018",
1093
+ "proofPurpose": "assertionMethod",
1094
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1095
+ "created": "2025-10-02T19:03:38Z",
1096
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..chzwHTaoPN7WrmLphXhF45QoKCNqAmjlZ1ZQLLDqZBHs7Yhs8G0zyC0lGZYIT49QzAxf8fJHpyA29rOWeUTYAQ"
1097
+ },
1098
+ "validFrom": "2025-10-02T19:03:38Z"
1099
+ },
1100
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1101
+ "timestamp": "2025-10-02T19:03:38Z"
1102
+ },
1103
+ "urn:cid:bagb6qaq6ednwjx5zbnqdujhesxxthbgnpfz4x72egswamfvtq4umcl6y7fvos": {
1104
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1105
+ "@id": "urn:cid:bagb6qaq6ednwjx5zbnqdujhesxxthbgnpfz4x72egswamfvtq4umcl6y7fvos",
1106
+ "@type": "DataRegistration",
1107
+ "data": "urn:cid:bafkr4ihlfnqjio7d6y2eeuxf4mrgmsoaxsas3frnxcfhqowzifddvsztou",
1108
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1109
+ "timestamp": "2025-10-02T19:03:38Z"
1110
+ },
1111
+ "urn:cid:bagb6qaq6eb2a72yd6oh5hpen57rpot64hlnezy24dr6vqfgj5jwqdtvzicx2o": {
1112
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1113
+ "@id": "urn:cid:bagb6qaq6eb2a72yd6oh5hpen57rpot64hlnezy24dr6vqfgj5jwqdtvzicx2o",
1114
+ "@type": "CredentialRegistration",
1115
+ "credential": {
1116
+ "@context": [
1117
+ "https://www.w3.org/ns/credentials/v2",
1118
+ "https://w3id.org/security/v2"
1119
+ ],
1120
+ "id": "urn:uuid:5e0de0bd-462e-45c7-8448-287ab9400849",
1121
+ "type": [
1122
+ "VerifiableCredential"
1123
+ ],
1124
+ "credentialSubject": {
1125
+ "id": "urn:cid:bagb6qaq6ealimsylbvmddtbhc2ru7ixplmdtu5p7iw7ku75vmcwpixircavjm"
1126
+ },
1127
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1128
+ "issuanceDate": "2025-10-02T19:03:38Z",
1129
+ "proof": {
1130
+ "type": "Ed25519Signature2018",
1131
+ "proofPurpose": "assertionMethod",
1132
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1133
+ "created": "2025-10-02T19:03:38Z",
1134
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..DOUC3l26yMz_TEXpXFqy3bG6vdvVMo_oNSZosTVzDoo7bmBp_rxKPThdhSiaYxEPEhHJeHsQ56cJwroBmVbkAQ"
1135
+ },
1136
+ "validFrom": "2025-10-02T19:03:38Z"
1137
+ },
1138
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1139
+ "timestamp": "2025-10-02T19:03:38Z"
1140
+ },
1141
+ "urn:cid:bagb6qaq6edgxyai5o44fp77ik7gc7ocar2wzledyjzpr6lnmjmqdnnvtu6ozq": {
1142
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1143
+ "@id": "urn:cid:bagb6qaq6edgxyai5o44fp77ik7gc7ocar2wzledyjzpr6lnmjmqdnnvtu6ozq",
1144
+ "@type": "CredentialRegistration",
1145
+ "credential": {
1146
+ "@context": [
1147
+ "https://www.w3.org/ns/credentials/v2",
1148
+ "https://w3id.org/security/v2"
1149
+ ],
1150
+ "id": "urn:uuid:478e17f5-3d01-4373-ba2c-525370435269",
1151
+ "type": [
1152
+ "VerifiableCredential"
1153
+ ],
1154
+ "credentialSubject": {
1155
+ "id": "urn:cid:bagb6qaq6ed4nkjk3xzgylqabuosivxe3gbdb4ubeshwekp6zzhxnin35jlh5a"
1156
+ },
1157
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1158
+ "issuanceDate": "2025-10-02T19:03:38Z",
1159
+ "proof": {
1160
+ "type": "Ed25519Signature2018",
1161
+ "proofPurpose": "assertionMethod",
1162
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1163
+ "created": "2025-10-02T19:03:38Z",
1164
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..sEyT2U1ywIRIMDM1eFyzJrGc-ffHu4Po8MYR5KUNvPICk1JZMnmcxnzZYEDLiQkr6jlcSiHVcGBOBAe9-50HDQ"
1165
+ },
1166
+ "validFrom": "2025-10-02T19:03:38Z"
1167
+ },
1168
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1169
+ "timestamp": "2025-10-02T19:03:38Z"
1170
+ },
1171
+ "urn:cid:bagb6qaq6eafwmccxjhe6n3klj6xde4zxny53c6srvy2yz5ct2dtk3bc5jeiya": {
1172
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1173
+ "@id": "urn:cid:bagb6qaq6eafwmccxjhe6n3klj6xde4zxny53c6srvy2yz5ct2dtk3bc5jeiya",
1174
+ "@type": "CredentialRegistration",
1175
+ "credential": {
1176
+ "@context": [
1177
+ "https://www.w3.org/ns/credentials/v2",
1178
+ "https://w3id.org/security/v2"
1179
+ ],
1180
+ "id": "urn:uuid:2abc217b-0c26-4db2-834a-889c77ef6a03",
1181
+ "type": [
1182
+ "VerifiableCredential"
1183
+ ],
1184
+ "credentialSubject": {
1185
+ "id": "urn:cid:bagb6qaq6eduvu5njwithgxxelguumm4phhcfkova4ved7fad5jmlkvuitczoi"
1186
+ },
1187
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1188
+ "issuanceDate": "2025-10-02T19:03:38Z",
1189
+ "proof": {
1190
+ "type": "Ed25519Signature2018",
1191
+ "proofPurpose": "assertionMethod",
1192
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1193
+ "created": "2025-10-02T19:03:38Z",
1194
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..yHOzG8gcBJTcpgfrE8hB2S3XFsnGmmRjilfkwryLpEalcUu2WGOUaZgGvUWYPjnPFR4KWD-7dc-ICjNn4VmMDQ"
1195
+ },
1196
+ "validFrom": "2025-10-02T19:03:38Z"
1197
+ },
1198
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1199
+ "timestamp": "2025-10-02T19:03:38Z"
1200
+ },
1201
+ "urn:cid:bagb6qaq6ed4nkjk3xzgylqabuosivxe3gbdb4ubeshwekp6zzhxnin35jlh5a": {
1202
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1203
+ "@id": "urn:cid:bagb6qaq6ed4nkjk3xzgylqabuosivxe3gbdb4ubeshwekp6zzhxnin35jlh5a",
1204
+ "@type": "MetadataRegistration",
1205
+ "subject": "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1206
+ "metadata": "urn:cid:baga6yaq6ec5puhefmqgek36hacuqx25g5fdzhp4nd5afcdf2tl4ipg2idghfw",
1207
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1208
+ "timestamp": "2025-10-02T19:03:38Z"
1209
+ },
1210
+ "urn:cid:bagb6qaq6eceu7t4w7yuh7zoyhkpguk56st5idxyiajbuwpdi5p4pxu2vwmkos": {
1211
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1212
+ "@id": "urn:cid:bagb6qaq6eceu7t4w7yuh7zoyhkpguk56st5idxyiajbuwpdi5p4pxu2vwmkos",
1213
+ "@type": "DataRegistration",
1214
+ "data": "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1215
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1216
+ "timestamp": "2025-10-02T19:03:38Z"
1217
+ },
1218
+ "urn:cid:bagb6qaq6ealimsylbvmddtbhc2ru7ixplmdtu5p7iw7ku75vmcwpixircavjm": {
1219
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1220
+ "@id": "urn:cid:bagb6qaq6ealimsylbvmddtbhc2ru7ixplmdtu5p7iw7ku75vmcwpixircavjm",
1221
+ "@type": "MetadataRegistration",
1222
+ "subject": "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q",
1223
+ "metadata": "urn:cid:baga6yaq6ed6zhbjgprqyxk7n54dndkeyrquhxnfamcqcujf4hueo76sk7wncc",
1224
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1225
+ "timestamp": "2025-10-02T19:03:38Z"
1226
+ },
1227
+ "urn:cid:bagb6qaq6ebaos2fe6jqexqs6esccc2aowd2ytcc3e4rjjsoev42eaxzbtq4uk": {
1228
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1229
+ "@id": "urn:cid:bagb6qaq6ebaos2fe6jqexqs6esccc2aowd2ytcc3e4rjjsoev42eaxzbtq4uk",
1230
+ "@type": "ComputationRegistration",
1231
+ "input": [
1232
+ "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1233
+ "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q"
1234
+ ],
1235
+ "output": "urn:cid:bafkr4ihlfnqjio7d6y2eeuxf4mrgmsoaxsas3frnxcfhqowzifddvsztou",
1236
+ "operatedBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1237
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1238
+ "timestamp": "2025-10-02T19:03:38Z"
1239
+ },
1240
+ "urn:cid:bagb6qaq6edstboio6x62omrg5gh6fdaiuwcithtzyyexphv4gptaoqpy6xu4y": {
1241
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1242
+ "@id": "urn:cid:bagb6qaq6edstboio6x62omrg5gh6fdaiuwcithtzyyexphv4gptaoqpy6xu4y",
1243
+ "@type": "CredentialRegistration",
1244
+ "credential": {
1245
+ "@context": [
1246
+ "https://www.w3.org/ns/credentials/v2",
1247
+ "https://w3id.org/security/v2"
1248
+ ],
1249
+ "id": "urn:uuid:e3cecc83-9da9-4c82-b8b0-d03798db91f5",
1250
+ "type": [
1251
+ "VerifiableCredential"
1252
+ ],
1253
+ "credentialSubject": {
1254
+ "id": "urn:cid:bagb6qaq6ebqiw536pweodxbwliasr3bdigv6xshe5qqgs35t7nhnixgklej4q"
1255
+ },
1256
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1257
+ "issuanceDate": "2025-10-02T19:03:38Z",
1258
+ "proof": {
1259
+ "type": "Ed25519Signature2018",
1260
+ "proofPurpose": "assertionMethod",
1261
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1262
+ "created": "2025-10-02T19:03:38Z",
1263
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..pLXBPeGWNoa3fU-5Y7rH6-pDjQe3ve3ewpaLi-yqBGLtaUvnP0vBF3v3il_tYvcZpRltLUsX2bMPbw8V2vNYBA"
1264
+ },
1265
+ "validFrom": "2025-10-02T19:03:38Z"
1266
+ },
1267
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1268
+ "timestamp": "2025-10-02T19:03:38Z"
1269
+ },
1270
+ "urn:cid:bagb6qaq6ebdwus6khp3qufhw7t3qlu3ql5tn5s4ueax3qko57fpy4f5zafr5q": {
1271
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1272
+ "@id": "urn:cid:bagb6qaq6ebdwus6khp3qufhw7t3qlu3ql5tn5s4ueax3qko57fpy4f5zafr5q",
1273
+ "@type": "MetadataRegistration",
1274
+ "subject": "urn:cid:bafkr4ihlfnqjio7d6y2eeuxf4mrgmsoaxsas3frnxcfhqowzifddvsztou",
1275
+ "metadata": "urn:cid:baga6yaq6ecd7si5fwqcmt7j5ewcycqbk7mvqaz7nl6t3czqmryg67nyqmxvj2",
1276
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1277
+ "timestamp": "2025-10-02T19:03:38Z"
1278
+ },
1279
+ "urn:cid:bagb6qaq6eduvu5njwithgxxelguumm4phhcfkova4ved7fad5jmlkvuitczoi": {
1280
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1281
+ "@id": "urn:cid:bagb6qaq6eduvu5njwithgxxelguumm4phhcfkova4ved7fad5jmlkvuitczoi",
1282
+ "@type": "GovernanceRegistration",
1283
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1284
+ "timestamp": "2025-10-02T19:03:38Z",
1285
+ "subject": "urn:cid:bafkr4ihlfnqjio7d6y2eeuxf4mrgmsoaxsas3frnxcfhqowzifddvsztou",
1286
+ "document": "urn:cid:bafkr4igzklnyol7ebab55mcunuwakcb7ylt5mz55hu5dzf4jzcrz65np6m"
1287
+ },
1288
+ "urn:cid:bagb6qaq6ec2t434ppfosmqewyajtpzbiehsv5qy6l6mjdkwipngyfjos4unre": {
1289
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1290
+ "@id": "urn:cid:bagb6qaq6ec2t434ppfosmqewyajtpzbiehsv5qy6l6mjdkwipngyfjos4unre",
1291
+ "@type": "CredentialRegistration",
1292
+ "credential": {
1293
+ "@context": [
1294
+ "https://www.w3.org/ns/credentials/v2",
1295
+ "https://w3id.org/security/v2"
1296
+ ],
1297
+ "id": "urn:uuid:13f21214-b654-458f-b374-5bbf6a7ec242",
1298
+ "type": [
1299
+ "VerifiableCredential"
1300
+ ],
1301
+ "credentialSubject": {
1302
+ "id": "urn:cid:bagb6qaq6ednwjx5zbnqdujhesxxthbgnpfz4x72egswamfvtq4umcl6y7fvos"
1303
+ },
1304
+ "issuer": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1305
+ "issuanceDate": "2025-10-02T19:03:38Z",
1306
+ "proof": {
1307
+ "type": "Ed25519Signature2018",
1308
+ "proofPurpose": "assertionMethod",
1309
+ "verificationMethod": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL#z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1310
+ "created": "2025-10-02T19:03:38Z",
1311
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..mPAbq2Swg8GPq1hGHlsK9k6o7Dx3INH599wDtneXuOPLxu3nwKipxR83jqxmr32soWbWUpqcxMbzm4gsD98gAg"
1312
+ },
1313
+ "validFrom": "2025-10-02T19:03:38Z"
1314
+ },
1315
+ "registeredBy": "did:key:z6MkpzCMT6vmNNXq68XeE32Lh7R3Fo7cZiZZF7E715NfSRmL",
1316
+ "timestamp": "2025-10-02T19:03:38Z"
1317
+ }
1318
+ },
1319
+ "blobs": {
1320
+ "baga6yaq6ed6zhbjgprqyxk7n54dndkeyrquhxnfamcqcujf4hueo76sk7wncc": "eyJhc3NldFR5cGUiOiJDb2RlIiwiZGVzY3JpcHRpb24iOiJQeXRob24gZmlsZSIsIm5hbWUiOiJjb21wdXRlLnB5In0=",
1321
+ "baga6yaq6ec5puhefmqgek36hacuqx25g5fdzhp4nd5afcdf2tl4ipg2idghfw": "eyJhc3NldFR5cGUiOiJEYXRhc2V0IiwiZGVzY3JpcHRpb24iOiJzb21lIGRhdGEgdGhhdCB3YXMgaGFzaGVkIiwibmFtZSI6ImlucHV0In0=",
1322
+ "baga6yaq6ecd7si5fwqcmt7j5ewcycqbk7mvqaz7nl6t3czqmryg67nyqmxvj2": "eyJhc3NldFR5cGUiOiJNb2RlbCIsImNvbnRhY3RJbmZvcm1hdGlvbiI6IlZpYSBBcHBUZWsgY29tbXVuaXR5IG9yIGFzc29jaWF0ZWQgcGFwZXIgYXV0aG9ycyIsImRlc2NyaXB0aW9uIjoiSW5wdXQgZGF0YSBjb2xsZWN0aW9uIGZvciBzaW1wbGUgZXhhbXBsZS4iLCJmb3JtYXQiOiJEYXRhc2V0IChDU1YsIEpTT04sIGV0Yy4pIiwibGljZW5zZSI6IkN1c3RvbSBMaWNlbnNlIC0gUmVmZXIgdG8gdGhlIG9mZmljaWFsIHNpdGUgZm9yIHRlcm1zLiIsImxpY2Vuc2VMaW5rIjoiaHR0cHM6Ly9hcHB0ZWsuY29tL3JsaGYtY2xpbWF0ZS1mZWVkYmFjay1saWNlbnNlIiwibG9jYXRpb24iOiJodHRwczovL2FwcHRlay5jb20vcmxoZi1jbGltYXRlLWZlZWRiYWNrLWRhdGEiLCJuYW1lIjoib3V0cHV0IiwicGFwZXJVcmwiOiJodHRwczovL3JsaGZjbGltYXRlZGF0YS5hcHB0ZWsuY29tLyIsInNvdXJjZSI6IkdpdEh1YiIsInNvdXJjZUxpbmsiOiJodHRwczovL2dpdGh1Yi5jb20vYXBwdGVrL3JsaGYtY2xpbWF0ZS1mZWVkYmFjayIsInNvdXJjZVN5c3RlbSI6IkFwcFRlayBSZXBvc2l0b3J5Iiwic291cmNlZFR5cGUiOiJJbnRlcm5hbCIsInN0YXR1cyI6IkFjdGl2ZSJ9"
1323
+ }
1324
+ }