@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,1402 @@
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://w3id.org/security/v2": {
79
+ "@context": [
80
+ {
81
+ "@version": 1.1
82
+ },
83
+ "https://w3id.org/security/v1",
84
+ {
85
+ "AesKeyWrappingKey2019": "sec:AesKeyWrappingKey2019",
86
+ "DeleteKeyOperation": "sec:DeleteKeyOperation",
87
+ "DeriveSecretOperation": "sec:DeriveSecretOperation",
88
+ "EcdsaSecp256k1Signature2019": "sec:EcdsaSecp256k1Signature2019",
89
+ "EcdsaSecp256k1VerificationKey2019": "sec:EcdsaSecp256k1VerificationKey2019",
90
+ "EcdsaSecp256r1Signature2019": "sec:EcdsaSecp256r1Signature2019",
91
+ "EcdsaSecp256r1VerificationKey2019": "sec:EcdsaSecp256r1VerificationKey2019",
92
+ "Ed25519Signature2018": "sec:Ed25519Signature2018",
93
+ "Ed25519VerificationKey2018": "sec:Ed25519VerificationKey2018",
94
+ "EquihashProof2018": "sec:EquihashProof2018",
95
+ "ExportKeyOperation": "sec:ExportKeyOperation",
96
+ "GenerateKeyOperation": "sec:GenerateKeyOperation",
97
+ "KmsOperation": "sec:KmsOperation",
98
+ "RevokeKeyOperation": "sec:RevokeKeyOperation",
99
+ "RsaSignature2018": "sec:RsaSignature2018",
100
+ "RsaVerificationKey2018": "sec:RsaVerificationKey2018",
101
+ "Sha256HmacKey2019": "sec:Sha256HmacKey2019",
102
+ "SignOperation": "sec:SignOperation",
103
+ "UnwrapKeyOperation": "sec:UnwrapKeyOperation",
104
+ "VerifyOperation": "sec:VerifyOperation",
105
+ "WrapKeyOperation": "sec:WrapKeyOperation",
106
+ "X25519KeyAgreementKey2019": "sec:X25519KeyAgreementKey2019",
107
+ "allowedAction": "sec:allowedAction",
108
+ "assertionMethod": {
109
+ "@container": "@set",
110
+ "@id": "sec:assertionMethod",
111
+ "@type": "@id"
112
+ },
113
+ "authentication": {
114
+ "@container": "@set",
115
+ "@id": "sec:authenticationMethod",
116
+ "@type": "@id"
117
+ },
118
+ "capability": {
119
+ "@id": "sec:capability",
120
+ "@type": "@id"
121
+ },
122
+ "capabilityAction": "sec:capabilityAction",
123
+ "capabilityChain": {
124
+ "@container": "@list",
125
+ "@id": "sec:capabilityChain",
126
+ "@type": "@id"
127
+ },
128
+ "capabilityDelegation": {
129
+ "@container": "@set",
130
+ "@id": "sec:capabilityDelegationMethod",
131
+ "@type": "@id"
132
+ },
133
+ "capabilityInvocation": {
134
+ "@container": "@set",
135
+ "@id": "sec:capabilityInvocationMethod",
136
+ "@type": "@id"
137
+ },
138
+ "caveat": {
139
+ "@container": "@set",
140
+ "@id": "sec:caveat",
141
+ "@type": "@id"
142
+ },
143
+ "challenge": "sec:challenge",
144
+ "ciphertext": "sec:ciphertext",
145
+ "controller": {
146
+ "@id": "sec:controller",
147
+ "@type": "@id"
148
+ },
149
+ "delegator": {
150
+ "@id": "sec:delegator",
151
+ "@type": "@id"
152
+ },
153
+ "equihashParameterK": {
154
+ "@id": "sec:equihashParameterK",
155
+ "@type": "xsd:integer"
156
+ },
157
+ "equihashParameterN": {
158
+ "@id": "sec:equihashParameterN",
159
+ "@type": "xsd:integer"
160
+ },
161
+ "invocationTarget": {
162
+ "@id": "sec:invocationTarget",
163
+ "@type": "@id"
164
+ },
165
+ "invoker": {
166
+ "@id": "sec:invoker",
167
+ "@type": "@id"
168
+ },
169
+ "jws": "sec:jws",
170
+ "keyAgreement": {
171
+ "@container": "@set",
172
+ "@id": "sec:keyAgreementMethod",
173
+ "@type": "@id"
174
+ },
175
+ "kmsModule": {
176
+ "@id": "sec:kmsModule"
177
+ },
178
+ "parentCapability": {
179
+ "@id": "sec:parentCapability",
180
+ "@type": "@id"
181
+ },
182
+ "plaintext": "sec:plaintext",
183
+ "proof": {
184
+ "@container": "@graph",
185
+ "@id": "sec:proof",
186
+ "@type": "@id"
187
+ },
188
+ "proofPurpose": {
189
+ "@id": "sec:proofPurpose",
190
+ "@type": "@vocab"
191
+ },
192
+ "proofValue": "sec:proofValue",
193
+ "referenceId": "sec:referenceId",
194
+ "unwrappedKey": "sec:unwrappedKey",
195
+ "verificationMethod": {
196
+ "@id": "sec:verificationMethod",
197
+ "@type": "@id"
198
+ },
199
+ "verifyData": "sec:verifyData",
200
+ "wrappedKey": "sec:wrappedKey"
201
+ }
202
+ ]
203
+ },
204
+ "https://www.w3.org/ns/credentials/v2": {
205
+ "@context": {
206
+ "...": {
207
+ "@id": "https://www.iana.org/assignments/jwt#..."
208
+ },
209
+ "@protected": true,
210
+ "@vocab": "https://www.w3.org/ns/credentials/issuer-dependent#",
211
+ "DataIntegrityProof": {
212
+ "@context": {
213
+ "@protected": true,
214
+ "challenge": "https://w3id.org/security#challenge",
215
+ "created": {
216
+ "@id": "http://purl.org/dc/terms/created",
217
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
218
+ },
219
+ "cryptosuite": {
220
+ "@id": "https://w3id.org/security#cryptosuite",
221
+ "@type": "https://w3id.org/security#cryptosuiteString"
222
+ },
223
+ "domain": "https://w3id.org/security#domain",
224
+ "expires": {
225
+ "@id": "https://w3id.org/security#expiration",
226
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
227
+ },
228
+ "id": "@id",
229
+ "nonce": "https://w3id.org/security#nonce",
230
+ "previousProof": {
231
+ "@id": "https://w3id.org/security#previousProof",
232
+ "@type": "@id"
233
+ },
234
+ "proofPurpose": {
235
+ "@context": {
236
+ "@protected": true,
237
+ "assertionMethod": {
238
+ "@container": "@set",
239
+ "@id": "https://w3id.org/security#assertionMethod",
240
+ "@type": "@id"
241
+ },
242
+ "authentication": {
243
+ "@container": "@set",
244
+ "@id": "https://w3id.org/security#authenticationMethod",
245
+ "@type": "@id"
246
+ },
247
+ "capabilityDelegation": {
248
+ "@container": "@set",
249
+ "@id": "https://w3id.org/security#capabilityDelegationMethod",
250
+ "@type": "@id"
251
+ },
252
+ "capabilityInvocation": {
253
+ "@container": "@set",
254
+ "@id": "https://w3id.org/security#capabilityInvocationMethod",
255
+ "@type": "@id"
256
+ },
257
+ "id": "@id",
258
+ "keyAgreement": {
259
+ "@container": "@set",
260
+ "@id": "https://w3id.org/security#keyAgreementMethod",
261
+ "@type": "@id"
262
+ },
263
+ "type": "@type"
264
+ },
265
+ "@id": "https://w3id.org/security#proofPurpose",
266
+ "@type": "@vocab"
267
+ },
268
+ "proofValue": {
269
+ "@id": "https://w3id.org/security#proofValue",
270
+ "@type": "https://w3id.org/security#multibase"
271
+ },
272
+ "type": "@type",
273
+ "verificationMethod": {
274
+ "@id": "https://w3id.org/security#verificationMethod",
275
+ "@type": "@id"
276
+ }
277
+ },
278
+ "@id": "https://w3id.org/security#DataIntegrityProof"
279
+ },
280
+ "JsonSchema": {
281
+ "@context": {
282
+ "@protected": true,
283
+ "id": "@id",
284
+ "jsonSchema": {
285
+ "@id": "https://w3.org/2018/credentials#jsonSchema",
286
+ "@type": "@json"
287
+ },
288
+ "type": "@type"
289
+ },
290
+ "@id": "https://w3.org/2018/credentials#JsonSchema"
291
+ },
292
+ "JsonSchemaCredential": "https://w3.org/2018/credentials#JsonSchemaCredential",
293
+ "StatusList2021": {
294
+ "@context": {
295
+ "@protected": true,
296
+ "encodedList": "https://w3id.org/vc/status-list#encodedList",
297
+ "id": "@id",
298
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
299
+ "type": "@type"
300
+ },
301
+ "@id": "https://w3id.org/vc/status-list#StatusList2021"
302
+ },
303
+ "StatusList2021Credential": {
304
+ "@context": {
305
+ "@protected": true,
306
+ "description": "https://schema.org/description",
307
+ "id": "@id",
308
+ "name": "https://schema.org/name",
309
+ "type": "@type"
310
+ },
311
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Credential"
312
+ },
313
+ "StatusList2021Entry": {
314
+ "@context": {
315
+ "@protected": true,
316
+ "id": "@id",
317
+ "statusListCredential": {
318
+ "@id": "https://w3id.org/vc/status-list#statusListCredential",
319
+ "@type": "@id"
320
+ },
321
+ "statusListIndex": "https://w3id.org/vc/status-list#statusListIndex",
322
+ "statusPurpose": "https://w3id.org/vc/status-list#statusPurpose",
323
+ "type": "@type"
324
+ },
325
+ "@id": "https://w3id.org/vc/status-list#StatusList2021Entry"
326
+ },
327
+ "VerifiableCredential": {
328
+ "@context": {
329
+ "@protected": true,
330
+ "confidenceMethod": {
331
+ "@id": "https://www.w3.org/2018/credentials#confidenceMethod",
332
+ "@type": "@id"
333
+ },
334
+ "credentialSchema": {
335
+ "@id": "https://www.w3.org/2018/credentials#credentialSchema",
336
+ "@type": "@id"
337
+ },
338
+ "credentialStatus": {
339
+ "@id": "https://www.w3.org/2018/credentials#credentialStatus",
340
+ "@type": "@id"
341
+ },
342
+ "credentialSubject": {
343
+ "@id": "https://www.w3.org/2018/credentials#credentialSubject",
344
+ "@type": "@id"
345
+ },
346
+ "description": {
347
+ "@context": {
348
+ "dir": "@direction",
349
+ "lang": "@language",
350
+ "value": "@value"
351
+ },
352
+ "@id": "https://schema.org/description"
353
+ },
354
+ "evidence": {
355
+ "@id": "https://www.w3.org/2018/credentials#evidence",
356
+ "@type": "@id"
357
+ },
358
+ "id": "@id",
359
+ "issuer": {
360
+ "@context": {
361
+ "@protected": true,
362
+ "description": {
363
+ "@context": {
364
+ "dir": "@direction",
365
+ "lang": "@language",
366
+ "value": "@value"
367
+ },
368
+ "@id": "https://schema.org/description"
369
+ },
370
+ "id": "@id",
371
+ "name": {
372
+ "@context": {
373
+ "dir": "@direction",
374
+ "lang": "@language",
375
+ "value": "@value"
376
+ },
377
+ "@id": "https://schema.org/name"
378
+ },
379
+ "type": "@type"
380
+ },
381
+ "@id": "https://www.w3.org/2018/credentials#issuer",
382
+ "@type": "@id"
383
+ },
384
+ "name": {
385
+ "@context": {
386
+ "dir": "@direction",
387
+ "lang": "@language",
388
+ "value": "@value"
389
+ },
390
+ "@id": "https://schema.org/name"
391
+ },
392
+ "proof": {
393
+ "@container": "@graph",
394
+ "@id": "https://w3id.org/security#proof",
395
+ "@type": "@id"
396
+ },
397
+ "refreshService": {
398
+ "@id": "https://www.w3.org/2018/credentials#refreshService",
399
+ "@type": "@id"
400
+ },
401
+ "relatedResource": {
402
+ "@id": "https://www.w3.org/2018/credentials#relatedResource",
403
+ "@type": "@id"
404
+ },
405
+ "termsOfUse": {
406
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
407
+ "@type": "@id"
408
+ },
409
+ "type": "@type",
410
+ "validFrom": {
411
+ "@id": "https://www.w3.org/2018/credentials#validFrom",
412
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
413
+ },
414
+ "validUntil": {
415
+ "@id": "https://www.w3.org/2018/credentials#validUntil",
416
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
417
+ }
418
+ },
419
+ "@id": "https://www.w3.org/2018/credentials#VerifiableCredential"
420
+ },
421
+ "VerifiablePresentation": {
422
+ "@context": {
423
+ "@protected": true,
424
+ "holder": {
425
+ "@id": "https://www.w3.org/2018/credentials#holder",
426
+ "@type": "@id"
427
+ },
428
+ "id": "@id",
429
+ "proof": {
430
+ "@container": "@graph",
431
+ "@id": "https://w3id.org/security#proof",
432
+ "@type": "@id"
433
+ },
434
+ "termsOfUse": {
435
+ "@id": "https://www.w3.org/2018/credentials#termsOfUse",
436
+ "@type": "@id"
437
+ },
438
+ "type": "@type",
439
+ "verifiableCredential": {
440
+ "@container": "@graph",
441
+ "@context": null,
442
+ "@id": "https://www.w3.org/2018/credentials#verifiableCredential",
443
+ "@type": "@id"
444
+ }
445
+ },
446
+ "@id": "https://www.w3.org/2018/credentials#VerifiablePresentation"
447
+ },
448
+ "_sd": {
449
+ "@id": "https://www.iana.org/assignments/jwt#_sd"
450
+ },
451
+ "_sd_alg": {
452
+ "@id": "https://www.iana.org/assignments/jwt#_sd_alg"
453
+ },
454
+ "aud": {
455
+ "@id": "https://www.iana.org/assignments/jwt#aud",
456
+ "@type": "@id"
457
+ },
458
+ "cnf": {
459
+ "@context": {
460
+ "@protected": true,
461
+ "jwk": {
462
+ "@id": "https://www.iana.org/assignments/jwt#jwk",
463
+ "@type": "@json"
464
+ },
465
+ "kid": {
466
+ "@id": "https://www.iana.org/assignments/jwt#kid",
467
+ "@type": "@id"
468
+ }
469
+ },
470
+ "@id": "https://www.iana.org/assignments/jwt#cnf"
471
+ },
472
+ "digestSRI": {
473
+ "@id": "https://www.w3.org/2018/credentials#digestSRI",
474
+ "@type": "https://www.w3.org/2018/credentials#sriString"
475
+ },
476
+ "exp": {
477
+ "@id": "https://www.iana.org/assignments/jwt#exp",
478
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
479
+ },
480
+ "iat": {
481
+ "@id": "https://www.iana.org/assignments/jwt#iat",
482
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
483
+ },
484
+ "id": "@id",
485
+ "iss": {
486
+ "@id": "https://www.iana.org/assignments/jose#iss",
487
+ "@type": "@id"
488
+ },
489
+ "jku": {
490
+ "@id": "https://www.iana.org/assignments/jose#jku",
491
+ "@type": "@id"
492
+ },
493
+ "kid": {
494
+ "@id": "https://www.iana.org/assignments/jose#kid",
495
+ "@type": "@id"
496
+ },
497
+ "mediaType": {
498
+ "@id": "https://schema.org/encodingFormat"
499
+ },
500
+ "nbf": {
501
+ "@id": "https://www.iana.org/assignments/jwt#nbf",
502
+ "@type": "https://www.w3.org/2001/XMLSchema#nonNegativeInteger"
503
+ },
504
+ "sub": {
505
+ "@id": "https://www.iana.org/assignments/jose#sub",
506
+ "@type": "@id"
507
+ },
508
+ "type": "@type",
509
+ "x5u": {
510
+ "@id": "https://www.iana.org/assignments/jose#x5u",
511
+ "@type": "@id"
512
+ }
513
+ }
514
+ },
515
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y": {
516
+ "@context": {
517
+ "@protected": true,
518
+ "EqtyVCompAmdSevV1": {
519
+ "@context": {
520
+ "measurement": {
521
+ "@id": "https://eqtylab.io/terms/measurement",
522
+ "@type": "xsd:string"
523
+ },
524
+ "measurementInfo": {
525
+ "@context": {
526
+ "append": {
527
+ "@context": {
528
+ "sha256": {
529
+ "@id": "https://eqtylab.io/terms/sha256",
530
+ "@type": "xsd:string"
531
+ },
532
+ "value": {
533
+ "@id": "https://eqtylab.io/terms/value",
534
+ "@type": "xsd:string"
535
+ }
536
+ },
537
+ "@id": "https://eqtylab.io/terms/append",
538
+ "@type": "@id"
539
+ },
540
+ "cpuType": {
541
+ "@id": "https://eqtylab.io/terms/cpuType",
542
+ "@type": "xsd:string"
543
+ },
544
+ "initrd": {
545
+ "@context": {
546
+ "sha256": {
547
+ "@id": "https://eqtylab.io/terms/sha256",
548
+ "@type": "xsd:string"
549
+ }
550
+ },
551
+ "@id": "https://eqtylab.io/terms/initrd",
552
+ "@type": "@id"
553
+ },
554
+ "kernel": {
555
+ "@context": {
556
+ "sha256": {
557
+ "@id": "https://eqtylab.io/terms/sha256",
558
+ "@type": "xsd:string"
559
+ }
560
+ },
561
+ "@id": "https://eqtylab.io/terms/kernel",
562
+ "@type": "@id"
563
+ },
564
+ "numCpuCores": {
565
+ "@id": "https://eqtylab.io/terms/numCpuCores",
566
+ "@type": "xsd:integer"
567
+ },
568
+ "ovmf": {
569
+ "@context": {
570
+ "sha256": {
571
+ "@id": "https://eqtylab.io/terms/sha256",
572
+ "@type": "xsd:string"
573
+ }
574
+ },
575
+ "@id": "https://eqtylab.io/terms/ovmf",
576
+ "@type": "@id"
577
+ },
578
+ "rootfs": {
579
+ "@context": {
580
+ "sha256": {
581
+ "@id": "https://eqtylab.io/terms/sha256",
582
+ "@type": "xsd:string"
583
+ }
584
+ },
585
+ "@id": "https://eqtylab.io/terms/rootfs",
586
+ "@type": "@id"
587
+ },
588
+ "sevMode": {
589
+ "@id": "https://eqtylab.io/terms/sevMode",
590
+ "@type": "xsd:string"
591
+ }
592
+ },
593
+ "@id": "https://eqtylab.io/terms/measurementInfo"
594
+ }
595
+ },
596
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1"
597
+ },
598
+ "EqtyVCompAmdSevV1Evidence": {
599
+ "@context": {
600
+ "certificateChain": {
601
+ "@id": "https://eqtylab.io/terms/certificateChain",
602
+ "@type": "@id"
603
+ },
604
+ "report": {
605
+ "@id": "https://eqtylab.io/terms/report",
606
+ "@type": "@id"
607
+ }
608
+ },
609
+ "@id": "https://eqtylab.io/terms/EqtyVCompAmdSevV1Evidence"
610
+ },
611
+ "EqtyVCompAzureV1": {
612
+ "@context": {
613
+ "measurement": {
614
+ "@context": {
615
+ "firmware": {
616
+ "@id": "https://eqtylab.io/terms/firmware",
617
+ "@type": "xsd:string"
618
+ },
619
+ "pcr11": {
620
+ "@id": "https://eqtylab.io/terms/pcr11",
621
+ "@type": "xsd:string"
622
+ }
623
+ },
624
+ "@id": "https://eqtylab.io/terms/measurement"
625
+ },
626
+ "measurementInfo": {
627
+ "@context": {
628
+ "append": {
629
+ "@context": {
630
+ "sha384": {
631
+ "@id": "https://eqtylab.io/terms/sha384",
632
+ "@type": "xsd:string"
633
+ },
634
+ "value": {
635
+ "@id": "https://eqtylab.io/terms/value",
636
+ "@type": "xsd:string"
637
+ }
638
+ },
639
+ "@id": "https://eqtylab.io/terms/append",
640
+ "@type": "@id"
641
+ },
642
+ "initrd": {
643
+ "@context": {
644
+ "parts": {
645
+ "@id": "https://eqtylab.io/terms/parts",
646
+ "@type": "@id"
647
+ },
648
+ "sha384": {
649
+ "@id": "https://eqtylab.io/terms/sha384",
650
+ "@type": "xsd:string"
651
+ }
652
+ },
653
+ "@id": "https://eqtylab.io/terms/initrd",
654
+ "@type": "@id"
655
+ },
656
+ "kernel": {
657
+ "@context": {
658
+ "sha384": {
659
+ "@id": "https://eqtylab.io/terms/sha384",
660
+ "@type": "xsd:string"
661
+ }
662
+ },
663
+ "@id": "https://eqtylab.io/terms/kernel",
664
+ "@type": "@id"
665
+ },
666
+ "rootfs": {
667
+ "@context": {
668
+ "sha256": {
669
+ "@id": "https://eqtylab.io/terms/sha256",
670
+ "@type": "xsd:string"
671
+ }
672
+ },
673
+ "@id": "https://eqtylab.io/terms/rootfs",
674
+ "@type": "@id"
675
+ },
676
+ "uki": {
677
+ "@id": "https://eqtylab.io/terms/uki",
678
+ "@type": "@id"
679
+ }
680
+ },
681
+ "@id": "https://eqtylab.io/terms/measurementInfo"
682
+ }
683
+ },
684
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1"
685
+ },
686
+ "EqtyVCompAzureV1Evidence": {
687
+ "@context": {
688
+ "azureBootLog": {
689
+ "@id": "https://eqtylab.io/terms/azureBootLog",
690
+ "@type": "@id"
691
+ },
692
+ "report": {
693
+ "@id": "https://eqtylab.io/terms/report",
694
+ "@type": "@id"
695
+ },
696
+ "reportCertificateChain": {
697
+ "@id": "https://eqtylab.io/terms/reportCertificateChain",
698
+ "@type": "@id"
699
+ },
700
+ "reportType": {
701
+ "@id": "https://eqtylab.io/terms/reportType",
702
+ "@type": "xsd:string"
703
+ },
704
+ "tpmAKCertificate": {
705
+ "@id": "https://eqtylab.io/terms/tpmAKCertificate",
706
+ "@type": "@id"
707
+ },
708
+ "tpmLog": {
709
+ "@id": "https://eqtylab.io/terms/tpmLog",
710
+ "@type": "@id"
711
+ },
712
+ "tpmQuote": {
713
+ "@id": "https://eqtylab.io/terms/tpmQuote",
714
+ "@type": "@id"
715
+ },
716
+ "tpmQuoteSignature": {
717
+ "@id": "https://eqtylab.io/terms/tpmQuoteSignature",
718
+ "@type": "@id"
719
+ }
720
+ },
721
+ "@id": "https://eqtylab.io/terms/EqtyVCompAzureV1Evidence"
722
+ },
723
+ "EqtyVCompDockerV1": {
724
+ "@context": {
725
+ "compose": {
726
+ "@id": "https://eqtylab.io/terms/compose",
727
+ "@type": "@id"
728
+ },
729
+ "executedOn": {
730
+ "@id": "https://eqtylab.io/terms/executedOn"
731
+ },
732
+ "image": {
733
+ "@context": {
734
+ "name": {
735
+ "@id": "https://eqtylab.io/terms/name",
736
+ "@type": "xsd:string"
737
+ },
738
+ "sha256": {
739
+ "@id": "https://eqtylab.io/terms/sha256",
740
+ "@type": "xsd:string"
741
+ }
742
+ },
743
+ "@id": "https://eqtylab.io/terms/image"
744
+ },
745
+ "operatedBy": {
746
+ "@id": "https://eqtylab.io/terms/operatedBy"
747
+ }
748
+ },
749
+ "@id": "https://eqtylab.io/terms/EqtyVCompDockerV1"
750
+ },
751
+ "EqtyVCompIntelTdxV0": {
752
+ "@context": {
753
+ "measurement": {
754
+ "@id": "https://eqtylab.io/terms/measurements",
755
+ "@type": "xsd:string"
756
+ },
757
+ "measurementInfo": {
758
+ "@context": {
759
+ "append": {
760
+ "@context": {
761
+ "sha384": {
762
+ "@id": "https://eqtylab.io/terms/sha384",
763
+ "@type": "xsd:string"
764
+ },
765
+ "value": {
766
+ "@id": "https://eqtylab.io/terms/value",
767
+ "@type": "xsd:string"
768
+ }
769
+ },
770
+ "@id": "https://eqtylab.io/terms/append",
771
+ "@type": "@id"
772
+ },
773
+ "initrd": {
774
+ "@context": {
775
+ "sha384": {
776
+ "@id": "https://eqtylab.io/terms/sha384",
777
+ "@type": "xsd:string"
778
+ }
779
+ },
780
+ "@id": "https://eqtylab.io/terms/initrd",
781
+ "@type": "@id"
782
+ },
783
+ "kernel": {
784
+ "@context": {
785
+ "sha384": {
786
+ "@id": "https://eqtylab.io/terms/sha384",
787
+ "@type": "xsd:string"
788
+ }
789
+ },
790
+ "@id": "https://eqtylab.io/terms/kernel",
791
+ "@type": "@id"
792
+ },
793
+ "ovmf": {
794
+ "@context": {
795
+ "sha384": {
796
+ "@id": "https://eqtylab.io/terms/sha384",
797
+ "@type": "xsd:string"
798
+ }
799
+ },
800
+ "@id": "https://eqtylab.io/terms/ovmf",
801
+ "@type": "@id"
802
+ },
803
+ "rootfs": {
804
+ "@context": {
805
+ "sha256": {
806
+ "@id": "https://eqtylab.io/terms/sha256",
807
+ "@type": "xsd:string"
808
+ }
809
+ },
810
+ "@id": "https://eqtylab.io/terms/rootfs",
811
+ "@type": "@id"
812
+ }
813
+ },
814
+ "@id": "https://eqtylab.io/terms/measurementInfo"
815
+ }
816
+ },
817
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0"
818
+ },
819
+ "EqtyVCompIntelTdxV0Evidence": {
820
+ "@context": {
821
+ "certificateChain": {
822
+ "@id": "https://eqtylab.io/terms/certificateChain",
823
+ "@type": "@id"
824
+ },
825
+ "report": {
826
+ "@id": "https://eqtylab.io/terms/report",
827
+ "@type": "@id"
828
+ }
829
+ },
830
+ "@id": "https://eqtylab.io/terms/EqtyVCompIntelTdxV0Evidence"
831
+ },
832
+ "EqtyVCompNvidiaCcV0Evidence": {
833
+ "@context": {
834
+ "certificateChain": {
835
+ "@id": "https://eqtylab.io/terms/certificateChain",
836
+ "@type": "@id"
837
+ },
838
+ "report": {
839
+ "@id": "https://eqtylab.io/terms/report",
840
+ "@type": "@id"
841
+ }
842
+ },
843
+ "@id": "https://eqtylab.io/terms/EqtyVCompNvidiaCcV0Evidence"
844
+ },
845
+ "vcomp": {
846
+ "@id": "https://eqtylab.io/terms/vcomp"
847
+ }
848
+ }
849
+ },
850
+ "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq": {
851
+ "@context": [
852
+ "urn:cid:bafkr4iegfox4fmrwmjwyhnmc4rxegbzeosob5iom3tb6pejhzbekw4xk6y",
853
+ {
854
+ "@protected": true,
855
+ "AssociationRegistration": {
856
+ "@context": {
857
+ "association": {
858
+ "@id": "https://eqtylab.io/terms/association",
859
+ "@type": "@id"
860
+ },
861
+ "subject": {
862
+ "@id": "https://eqtylab.io/terms/subject",
863
+ "@type": "@id"
864
+ }
865
+ },
866
+ "@id": "https://eqtylab.io/terms/AssociationRegistration"
867
+ },
868
+ "ComputationRegistration": {
869
+ "@context": {
870
+ "computation": {
871
+ "@id": "https://eqtylab.io/terms/computation",
872
+ "@type": "@id"
873
+ },
874
+ "executedOn": {
875
+ "@id": "https://eqtylab.io/terms/executedOn"
876
+ },
877
+ "input": {
878
+ "@id": "https://eqtylab.io/terms/input",
879
+ "@type": "@id"
880
+ },
881
+ "operatedBy": {
882
+ "@id": "https://eqtylab.io/terms/operatedBy"
883
+ },
884
+ "output": {
885
+ "@id": "https://eqtylab.io/terms/output",
886
+ "@type": "@id"
887
+ }
888
+ },
889
+ "@id": "https://eqtylab.io/terms/ComputationRegistration"
890
+ },
891
+ "CredentialRegistration": {
892
+ "@context": {
893
+ "credential": {
894
+ "@id": "https://eqtylab.io/terms/credential"
895
+ },
896
+ "credentialDsse": {
897
+ "@context": {
898
+ "payload": {
899
+ "@id": "https://eqtylab.io/terms/payload",
900
+ "@type": "xsd:string"
901
+ },
902
+ "payloadType": {
903
+ "@id": "https://eqtylab.io/terms/payloadType",
904
+ "@type": "xsd:string"
905
+ },
906
+ "signatures": {
907
+ "@context": {
908
+ "keyid": {
909
+ "@id": "https://eqtylab.io/terms/keyid",
910
+ "@type": "xsd:string"
911
+ },
912
+ "sig": {
913
+ "@id": "https://eqtylab.io/terms/keyid",
914
+ "@type": "xsd:string"
915
+ }
916
+ },
917
+ "@id": "https://eqtylab.io/terms/signatures"
918
+ }
919
+ },
920
+ "@id": "https://eqtylab.io/terms/credentialDsse"
921
+ }
922
+ },
923
+ "@id": "https://eqtylab.io/terms/CredentialRegistration"
924
+ },
925
+ "DataRegistration": {
926
+ "@context": {
927
+ "data": {
928
+ "@id": "https://eqtylab.io/terms/data",
929
+ "@type": "@id"
930
+ }
931
+ },
932
+ "@id": "https://eqtylab.io/terms/DataRegistration"
933
+ },
934
+ "DidRegistration": {
935
+ "@context": {
936
+ "did": {
937
+ "@id": "https://eqtylab.io/terms/did"
938
+ }
939
+ },
940
+ "@id": "https://eqtylab.io/terms/DidRegistration"
941
+ },
942
+ "EntityRegistration": {
943
+ "@context": {
944
+ "entity": {
945
+ "@id": "https://eqtylab.io/terms/entity",
946
+ "@type": "@id"
947
+ }
948
+ },
949
+ "@id": "https://eqtylab.io/terms/EntityRegistration"
950
+ },
951
+ "GovernanceRegistration": {
952
+ "@context": {
953
+ "document": {
954
+ "@id": "https://eqtylab.io/terms/document",
955
+ "@type": "@id"
956
+ },
957
+ "subject": {
958
+ "@id": "https://eqtylab.io/terms/subject",
959
+ "@type": "@id"
960
+ }
961
+ },
962
+ "@id": "https://eqtylab.io/terms/GovernanceRegistration"
963
+ },
964
+ "MetadataRegistration": {
965
+ "@context": {
966
+ "metadata": {
967
+ "@id": "https://eqtylab.io/terms/metadata",
968
+ "@type": "@id"
969
+ },
970
+ "subject": {
971
+ "@id": "https://eqtylab.io/terms/subject",
972
+ "@type": "@id"
973
+ }
974
+ },
975
+ "@id": "https://eqtylab.io/terms/MetadataRegistration"
976
+ },
977
+ "StorageRegistration": {
978
+ "@context": {
979
+ "data": {
980
+ "@id": "https://eqtylab.io/terms/data",
981
+ "@type": "@id"
982
+ },
983
+ "operatedBy": {
984
+ "@id": "https://eqtylab.io/terms/operatedBy"
985
+ },
986
+ "storedOn": {
987
+ "@id": "https://eqtylab.io/terms/storedOn",
988
+ "@type": "@id"
989
+ }
990
+ },
991
+ "@id": "https://eqtylab.io/terms/StorageRegistration"
992
+ },
993
+ "registeredBy": {
994
+ "@id": "https://eqtylab.io/terms/registeredBy"
995
+ },
996
+ "timestamp": {
997
+ "@id": "https://eqtylab.io/terms/timestamp",
998
+ "@type": "http://www.w3.org/2001/XMLSchema#dateTime"
999
+ }
1000
+ }
1001
+ ]
1002
+ }
1003
+ },
1004
+ "statements": {
1005
+ "urn:cid:bagb6qaq6ecqs3uvyqr5kv2avyphvpvyhcnoligafwxxeelimw3dm5agaekbwa": {
1006
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1007
+ "@id": "urn:cid:bagb6qaq6ecqs3uvyqr5kv2avyphvpvyhcnoligafwxxeelimw3dm5agaekbwa",
1008
+ "@type": "ComputationRegistration",
1009
+ "input": [
1010
+ "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1011
+ "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q"
1012
+ ],
1013
+ "output": "urn:cid:bafkr4id43dz7ifde3gpu7griwx634fmkbqknzn5ojmef7wtacu33spvlmi",
1014
+ "operatedBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1015
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1016
+ "timestamp": "2025-10-02T20:33:12Z"
1017
+ },
1018
+ "urn:cid:bagb6qaq6edb6iehnfavwdhwaly4ilc64qmxyweue34iculy2dcg7naaaiyak4": {
1019
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1020
+ "@id": "urn:cid:bagb6qaq6edb6iehnfavwdhwaly4ilc64qmxyweue34iculy2dcg7naaaiyak4",
1021
+ "@type": "CredentialRegistration",
1022
+ "credential": {
1023
+ "@context": [
1024
+ "https://www.w3.org/ns/credentials/v2",
1025
+ "https://w3id.org/security/v2"
1026
+ ],
1027
+ "id": "urn:uuid:aa115482-3a7d-498a-a05c-983722b501f8",
1028
+ "type": [
1029
+ "VerifiableCredential"
1030
+ ],
1031
+ "credentialSubject": {
1032
+ "id": "urn:cid:bagb6qaq6edqdm7xkmolcxwdxx2ivcxsrcv6gv5nbwk3acrnclfresrjfwqwc4"
1033
+ },
1034
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1035
+ "issuanceDate": "2025-10-02T20:33:12Z",
1036
+ "proof": {
1037
+ "type": "Ed25519Signature2018",
1038
+ "proofPurpose": "assertionMethod",
1039
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1040
+ "created": "2025-10-02T20:33:12Z",
1041
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..5Gix3sWZ8rqjF2k5HRWL5TPqDBcGcF3ToTn7-9xKu7T8-OiWvrwYbNdmjaRRlSt-gPUzNehXhnX8zA8SM_ljAw"
1042
+ },
1043
+ "validFrom": "2025-10-02T20:33:12Z"
1044
+ },
1045
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1046
+ "timestamp": "2025-10-02T20:33:12Z"
1047
+ },
1048
+ "urn:cid:bagb6qaq6edwcgpi3735hutd6xy5pwkncwkzl5demcvbtoux755fqork5nbcis": {
1049
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1050
+ "@id": "urn:cid:bagb6qaq6edwcgpi3735hutd6xy5pwkncwkzl5demcvbtoux755fqork5nbcis",
1051
+ "@type": "MetadataRegistration",
1052
+ "subject": "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1053
+ "metadata": "urn:cid:baga6yaq6ec5puhefmqgek36hacuqx25g5fdzhp4nd5afcdf2tl4ipg2idghfw",
1054
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1055
+ "timestamp": "2025-10-02T20:33:12Z"
1056
+ },
1057
+ "urn:cid:bagb6qaq6ebpr3yihb7efje6hjincgmsjaaie37vqzrkkqtxgsrs2zvpe3brpy": {
1058
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1059
+ "@id": "urn:cid:bagb6qaq6ebpr3yihb7efje6hjincgmsjaaie37vqzrkkqtxgsrs2zvpe3brpy",
1060
+ "@type": "CredentialRegistration",
1061
+ "credential": {
1062
+ "@context": [
1063
+ "https://www.w3.org/ns/credentials/v2",
1064
+ "https://w3id.org/security/v2"
1065
+ ],
1066
+ "id": "urn:uuid:81b7969d-485c-4c36-9c6b-83927cea0bd7",
1067
+ "type": [
1068
+ "VerifiableCredential"
1069
+ ],
1070
+ "credentialSubject": {
1071
+ "id": "urn:cid:bagb6qaq6ecpt275ghjmfuo54s2gljhzabkenqo2ho423hynakkqcw6j7vxy7y"
1072
+ },
1073
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1074
+ "issuanceDate": "2025-10-02T20:33:12Z",
1075
+ "proof": {
1076
+ "type": "Ed25519Signature2018",
1077
+ "proofPurpose": "assertionMethod",
1078
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1079
+ "created": "2025-10-02T20:33:12Z",
1080
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..RkL9Fo0leHPcgF5LFmi8Z4S9BIinBYLQLStPfJ9m5zYKfmEeAhRo-W992G25SBNXVGdK7QY-MX7q4mYPl5_JCA"
1081
+ },
1082
+ "validFrom": "2025-10-02T20:33:12Z"
1083
+ },
1084
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1085
+ "timestamp": "2025-10-02T20:33:12Z"
1086
+ },
1087
+ "urn:cid:bagb6qaq6eblyx7cq7laew4zvwbxrvldjdlpx4m7uwnh5jdfgx6vftqwufq2we": {
1088
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1089
+ "@id": "urn:cid:bagb6qaq6eblyx7cq7laew4zvwbxrvldjdlpx4m7uwnh5jdfgx6vftqwufq2we",
1090
+ "@type": "CredentialRegistration",
1091
+ "credential": {
1092
+ "@context": [
1093
+ "https://www.w3.org/ns/credentials/v2",
1094
+ "https://w3id.org/security/v2"
1095
+ ],
1096
+ "id": "urn:uuid:42e4784e-ae4f-458f-9e9e-760abef52d8c",
1097
+ "type": [
1098
+ "VerifiableCredential"
1099
+ ],
1100
+ "credentialSubject": {
1101
+ "id": "urn:cid:bagb6qaq6ec4xeq6cwl7lo4q2oqr55rn53o4zsdtcy3dic2i3gxdbg5v7uzyws"
1102
+ },
1103
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1104
+ "issuanceDate": "2025-10-02T20:33:12Z",
1105
+ "proof": {
1106
+ "type": "Ed25519Signature2018",
1107
+ "proofPurpose": "assertionMethod",
1108
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1109
+ "created": "2025-10-02T20:33:12Z",
1110
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..MFOiflQlUYQbF1mxuMVY4Ee-DeoFa8OkkvPMcToF4vc6Zr-p23nnLDZYgmSWpvrWAZUVhi64uOK217BU6iNzBw"
1111
+ },
1112
+ "validFrom": "2025-10-02T20:33:12Z"
1113
+ },
1114
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1115
+ "timestamp": "2025-10-02T20:33:12Z"
1116
+ },
1117
+ "urn:cid:bagb6qaq6edemdtsj5eegkxnkh35msrdmer3jhdt3azirisrj6gnjb32sjgeyu": {
1118
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1119
+ "@id": "urn:cid:bagb6qaq6edemdtsj5eegkxnkh35msrdmer3jhdt3azirisrj6gnjb32sjgeyu",
1120
+ "@type": "CredentialRegistration",
1121
+ "credential": {
1122
+ "@context": [
1123
+ "https://www.w3.org/ns/credentials/v2",
1124
+ "https://w3id.org/security/v2"
1125
+ ],
1126
+ "id": "urn:uuid:bd8c9ee5-34a5-4187-b257-df3ac08d7c36",
1127
+ "type": [
1128
+ "VerifiableCredential"
1129
+ ],
1130
+ "credentialSubject": {
1131
+ "id": "urn:cid:bagb6qaq6ecqs3uvyqr5kv2avyphvpvyhcnoligafwxxeelimw3dm5agaekbwa"
1132
+ },
1133
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1134
+ "issuanceDate": "2025-10-02T20:33:12Z",
1135
+ "proof": {
1136
+ "type": "Ed25519Signature2018",
1137
+ "proofPurpose": "assertionMethod",
1138
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1139
+ "created": "2025-10-02T20:33:12Z",
1140
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..qJADLSknRrAwID2cQdStokfov8DSCrELu3CH-YuO_bsbt1sRBky37JG9Laqun3S2nfE8h_qEsGCs3X-gLpomCQ"
1141
+ },
1142
+ "validFrom": "2025-10-02T20:33:12Z"
1143
+ },
1144
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1145
+ "timestamp": "2025-10-02T20:33:12Z"
1146
+ },
1147
+ "urn:cid:bagb6qaq6ebndig45ny5fm6xdyoamchz2zmsc42gexf7r6bxhe4l3isz4lpyzk": {
1148
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1149
+ "@id": "urn:cid:bagb6qaq6ebndig45ny5fm6xdyoamchz2zmsc42gexf7r6bxhe4l3isz4lpyzk",
1150
+ "@type": "EntityRegistration",
1151
+ "entity": "urn:uuid:af56cc89-0133-4e6f-a2fd-0d024658dda4",
1152
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1153
+ "timestamp": "2025-10-02T20:33:12Z"
1154
+ },
1155
+ "urn:cid:bagb6qaq6ed4vdqwjdpcl4ovu5sk5wyhrzkxtvh7pm6bbfevah7vykpex6kl5o": {
1156
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1157
+ "@id": "urn:cid:bagb6qaq6ed4vdqwjdpcl4ovu5sk5wyhrzkxtvh7pm6bbfevah7vykpex6kl5o",
1158
+ "@type": "DataRegistration",
1159
+ "data": "urn:cid:bafkr4iensszfrkcq3medrmxpawmr5zpres3j2p6d6omvqooeegeesgwslu",
1160
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1161
+ "timestamp": "2025-10-02T20:33:12Z"
1162
+ },
1163
+ "urn:cid:bagb6qaq6eapjyjshoonlysvk6yruzwnz2ch3c6oozgntpl6zwmknu2p6xr6ew": {
1164
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1165
+ "@id": "urn:cid:bagb6qaq6eapjyjshoonlysvk6yruzwnz2ch3c6oozgntpl6zwmknu2p6xr6ew",
1166
+ "@type": "AssociationRegistration",
1167
+ "subject": "urn:cid:bafkr4id43dz7ifde3gpu7griwx634fmkbqknzn5ojmef7wtacu33spvlmi",
1168
+ "association": "urn:uuid:af56cc89-0133-4e6f-a2fd-0d024658dda4",
1169
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1170
+ "timestamp": "2025-10-02T20:33:12Z"
1171
+ },
1172
+ "urn:cid:bagb6qaq6ebrop757oyao3ery5r3cudzvqhdhxg6wk75ztqu5sf7aemm6lrojs": {
1173
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1174
+ "@id": "urn:cid:bagb6qaq6ebrop757oyao3ery5r3cudzvqhdhxg6wk75ztqu5sf7aemm6lrojs",
1175
+ "@type": "MetadataRegistration",
1176
+ "subject": "urn:cid:bafkr4id43dz7ifde3gpu7griwx634fmkbqknzn5ojmef7wtacu33spvlmi",
1177
+ "metadata": "urn:cid:baga6yaq6ecd7si5fwqcmt7j5ewcycqbk7mvqaz7nl6t3czqmryg67nyqmxvj2",
1178
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1179
+ "timestamp": "2025-10-02T20:33:12Z"
1180
+ },
1181
+ "urn:cid:bagb6qaq6edze2xi3k7nxqavbp33xrntzhx4ei7mo2sypggiw5olalmcfzlloc": {
1182
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1183
+ "@id": "urn:cid:bagb6qaq6edze2xi3k7nxqavbp33xrntzhx4ei7mo2sypggiw5olalmcfzlloc",
1184
+ "@type": "CredentialRegistration",
1185
+ "credential": {
1186
+ "@context": [
1187
+ "https://www.w3.org/ns/credentials/v2",
1188
+ "https://w3id.org/security/v2"
1189
+ ],
1190
+ "id": "urn:uuid:c9567870-f112-411c-96d4-a030086e4a7a",
1191
+ "type": [
1192
+ "VerifiableCredential"
1193
+ ],
1194
+ "credentialSubject": {
1195
+ "id": "urn:cid:bagb6qaq6eapjyjshoonlysvk6yruzwnz2ch3c6oozgntpl6zwmknu2p6xr6ew"
1196
+ },
1197
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1198
+ "issuanceDate": "2025-10-02T20:33:12Z",
1199
+ "proof": {
1200
+ "type": "Ed25519Signature2018",
1201
+ "proofPurpose": "assertionMethod",
1202
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1203
+ "created": "2025-10-02T20:33:12Z",
1204
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..jhiC9UkjnVXmZUV7V5sOoM54DxwAy3mgN6HiCBDHJqRueOVBn3sxHL-eZrZiAKmT5t5R_7YSwm8BdqRLbOrnBQ"
1205
+ },
1206
+ "validFrom": "2025-10-02T20:33:12Z"
1207
+ },
1208
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1209
+ "timestamp": "2025-10-02T20:33:12Z"
1210
+ },
1211
+ "urn:cid:bagb6qaq6eaz75smmk2cio27tt6jvotfrhcaapiwnyuo5aktxtdz2zr4ool5hk": {
1212
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1213
+ "@id": "urn:cid:bagb6qaq6eaz75smmk2cio27tt6jvotfrhcaapiwnyuo5aktxtdz2zr4ool5hk",
1214
+ "@type": "CredentialRegistration",
1215
+ "credential": {
1216
+ "@context": [
1217
+ "https://www.w3.org/ns/credentials/v2",
1218
+ "https://w3id.org/security/v2"
1219
+ ],
1220
+ "id": "urn:uuid:16da3188-8714-4787-935a-c6afa6646d4a",
1221
+ "type": [
1222
+ "VerifiableCredential"
1223
+ ],
1224
+ "credentialSubject": {
1225
+ "id": "urn:cid:bagb6qaq6ebrop757oyao3ery5r3cudzvqhdhxg6wk75ztqu5sf7aemm6lrojs"
1226
+ },
1227
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1228
+ "issuanceDate": "2025-10-02T20:33:12Z",
1229
+ "proof": {
1230
+ "type": "Ed25519Signature2018",
1231
+ "proofPurpose": "assertionMethod",
1232
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1233
+ "created": "2025-10-02T20:33:12Z",
1234
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..1W_FWNx5QvanmlzYu7RKuVjd12lGYEThraT2NxXDrukmpkG-TnM-V-n8qJZSz0pRVF_9x2sxnPwV61HxkrrqCA"
1235
+ },
1236
+ "validFrom": "2025-10-02T20:33:12Z"
1237
+ },
1238
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1239
+ "timestamp": "2025-10-02T20:33:12Z"
1240
+ },
1241
+ "urn:cid:bagb6qaq6edj2ssatavvmqcznadj7t25lxyki35sowdxkm42kadxgw6g7kkmw4": {
1242
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1243
+ "@id": "urn:cid:bagb6qaq6edj2ssatavvmqcznadj7t25lxyki35sowdxkm42kadxgw6g7kkmw4",
1244
+ "@type": "CredentialRegistration",
1245
+ "credential": {
1246
+ "@context": [
1247
+ "https://www.w3.org/ns/credentials/v2",
1248
+ "https://w3id.org/security/v2"
1249
+ ],
1250
+ "id": "urn:uuid:d020628c-950c-4b70-a2ff-5bcbe826f940",
1251
+ "type": [
1252
+ "VerifiableCredential"
1253
+ ],
1254
+ "credentialSubject": {
1255
+ "id": "urn:cid:bagb6qaq6ed4vdqwjdpcl4ovu5sk5wyhrzkxtvh7pm6bbfevah7vykpex6kl5o"
1256
+ },
1257
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1258
+ "issuanceDate": "2025-10-02T20:33:12Z",
1259
+ "proof": {
1260
+ "type": "Ed25519Signature2018",
1261
+ "proofPurpose": "assertionMethod",
1262
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1263
+ "created": "2025-10-02T20:33:12Z",
1264
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..3M4gINBhNR10ikOIhIV1oX24cBu7Aav6beZ7adBZe36wRCNI3eePNQQLqkrZAnCkvcjVJ_AnFlasCmY5zMHMDQ"
1265
+ },
1266
+ "validFrom": "2025-10-02T20:33:12Z"
1267
+ },
1268
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1269
+ "timestamp": "2025-10-02T20:33:12Z"
1270
+ },
1271
+ "urn:cid:bagb6qaq6ebw3swfva4ultnm55er3rkvduzl243xdonta3yjxblgoe7anewo7k": {
1272
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1273
+ "@id": "urn:cid:bagb6qaq6ebw3swfva4ultnm55er3rkvduzl243xdonta3yjxblgoe7anewo7k",
1274
+ "@type": "MetadataRegistration",
1275
+ "subject": "urn:uuid:af56cc89-0133-4e6f-a2fd-0d024658dda4",
1276
+ "metadata": "urn:cid:baga6yaq6edn766rqoj3dr24tex4jwlnalnl7ht74pw5tduo2ekbbduaui7m4g",
1277
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1278
+ "timestamp": "2025-10-02T20:33:12Z"
1279
+ },
1280
+ "urn:cid:bagb6qaq6ec4xeq6cwl7lo4q2oqr55rn53o4zsdtcy3dic2i3gxdbg5v7uzyws": {
1281
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1282
+ "@id": "urn:cid:bagb6qaq6ec4xeq6cwl7lo4q2oqr55rn53o4zsdtcy3dic2i3gxdbg5v7uzyws",
1283
+ "@type": "MetadataRegistration",
1284
+ "subject": "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q",
1285
+ "metadata": "urn:cid:baga6yaq6ed6zhbjgprqyxk7n54dndkeyrquhxnfamcqcujf4hueo76sk7wncc",
1286
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1287
+ "timestamp": "2025-10-02T20:33:12Z"
1288
+ },
1289
+ "urn:cid:bagb6qaq6edygo2uufz7lb4n7m4vhewowzot362laedkynvhkinrjizrhvmv2c": {
1290
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1291
+ "@id": "urn:cid:bagb6qaq6edygo2uufz7lb4n7m4vhewowzot362laedkynvhkinrjizrhvmv2c",
1292
+ "@type": "CredentialRegistration",
1293
+ "credential": {
1294
+ "@context": [
1295
+ "https://www.w3.org/ns/credentials/v2",
1296
+ "https://w3id.org/security/v2"
1297
+ ],
1298
+ "id": "urn:uuid:8088acf1-869f-4110-87ad-d78bd4b6ade3",
1299
+ "type": [
1300
+ "VerifiableCredential"
1301
+ ],
1302
+ "credentialSubject": {
1303
+ "id": "urn:cid:bagb6qaq6ebndig45ny5fm6xdyoamchz2zmsc42gexf7r6bxhe4l3isz4lpyzk"
1304
+ },
1305
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1306
+ "issuanceDate": "2025-10-02T20:33:12Z",
1307
+ "proof": {
1308
+ "type": "Ed25519Signature2018",
1309
+ "proofPurpose": "assertionMethod",
1310
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1311
+ "created": "2025-10-02T20:33:12Z",
1312
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..zPZmXANnPg_ns3B_Gp4rtCps_bsNC6wsUOO3xGXaxmMLVI7vd8X6A1Yf4kHIGM-vhoSuSnyb-1R1K1HlWMCJBQ"
1313
+ },
1314
+ "validFrom": "2025-10-02T20:33:12Z"
1315
+ },
1316
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1317
+ "timestamp": "2025-10-02T20:33:12Z"
1318
+ },
1319
+ "urn:cid:bagb6qaq6edpqxamlrtugouuztz6jl4po3uq4r5b5lrrvkv6f4f7f55bwysxm2": {
1320
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1321
+ "@id": "urn:cid:bagb6qaq6edpqxamlrtugouuztz6jl4po3uq4r5b5lrrvkv6f4f7f55bwysxm2",
1322
+ "@type": "CredentialRegistration",
1323
+ "credential": {
1324
+ "@context": [
1325
+ "https://www.w3.org/ns/credentials/v2",
1326
+ "https://w3id.org/security/v2"
1327
+ ],
1328
+ "id": "urn:uuid:ca1c34e4-8afd-4e58-8f20-d47e6028d0a8",
1329
+ "type": [
1330
+ "VerifiableCredential"
1331
+ ],
1332
+ "credentialSubject": {
1333
+ "id": "urn:cid:bagb6qaq6edwcgpi3735hutd6xy5pwkncwkzl5demcvbtoux755fqork5nbcis"
1334
+ },
1335
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1336
+ "issuanceDate": "2025-10-02T20:33:12Z",
1337
+ "proof": {
1338
+ "type": "Ed25519Signature2018",
1339
+ "proofPurpose": "assertionMethod",
1340
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1341
+ "created": "2025-10-02T20:33:12Z",
1342
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..sfSA1mFYENXPSU9lO5rUsPOSuNUlqjNm97QCqaEobjfsxSOTaRJQXpJ-l6uKz7vdk7mZ4V273gfECS5VEMxeDw"
1343
+ },
1344
+ "validFrom": "2025-10-02T20:33:12Z"
1345
+ },
1346
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1347
+ "timestamp": "2025-10-02T20:33:12Z"
1348
+ },
1349
+ "urn:cid:bagb6qaq6edqdm7xkmolcxwdxx2ivcxsrcv6gv5nbwk3acrnclfresrjfwqwc4": {
1350
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1351
+ "@id": "urn:cid:bagb6qaq6edqdm7xkmolcxwdxx2ivcxsrcv6gv5nbwk3acrnclfresrjfwqwc4",
1352
+ "@type": "DataRegistration",
1353
+ "data": "urn:cid:bafkr4id43dz7ifde3gpu7griwx634fmkbqknzn5ojmef7wtacu33spvlmi",
1354
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1355
+ "timestamp": "2025-10-02T20:33:12Z"
1356
+ },
1357
+ "urn:cid:bagb6qaq6ecpt275ghjmfuo54s2gljhzabkenqo2ho423hynakkqcw6j7vxy7y": {
1358
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1359
+ "@id": "urn:cid:bagb6qaq6ecpt275ghjmfuo54s2gljhzabkenqo2ho423hynakkqcw6j7vxy7y",
1360
+ "@type": "DataRegistration",
1361
+ "data": "urn:cid:bafkr4id6aewelszdm2b2fhullpxb6exh45cyy3r4piru6hnstimm62j52q",
1362
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1363
+ "timestamp": "2025-10-02T20:33:12Z"
1364
+ },
1365
+ "urn:cid:bagb6qaq6ec63fliatvrhqfag35l6tbgmaxmnfcpslxcrkkiupa6c7dregouum": {
1366
+ "@context": "urn:cid:bafkr4ibtc72t26blsnipjniwpoawtopufixoe7bbloqk7ko65cizgnhgnq",
1367
+ "@id": "urn:cid:bagb6qaq6ec63fliatvrhqfag35l6tbgmaxmnfcpslxcrkkiupa6c7dregouum",
1368
+ "@type": "CredentialRegistration",
1369
+ "credential": {
1370
+ "@context": [
1371
+ "https://www.w3.org/ns/credentials/v2",
1372
+ "https://w3id.org/security/v2"
1373
+ ],
1374
+ "id": "urn:uuid:8b4b6976-3bf6-4277-8854-f535747679d6",
1375
+ "type": [
1376
+ "VerifiableCredential"
1377
+ ],
1378
+ "credentialSubject": {
1379
+ "id": "urn:cid:bagb6qaq6ebw3swfva4ultnm55er3rkvduzl243xdonta3yjxblgoe7anewo7k"
1380
+ },
1381
+ "issuer": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1382
+ "issuanceDate": "2025-10-02T20:33:12Z",
1383
+ "proof": {
1384
+ "type": "Ed25519Signature2018",
1385
+ "proofPurpose": "assertionMethod",
1386
+ "verificationMethod": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS#z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1387
+ "created": "2025-10-02T20:33:12Z",
1388
+ "jws": "eyJhbGciOiJFZERTQSIsImNyaXQiOlsiYjY0Il0sImI2NCI6ZmFsc2V9..Ois4aqH_WdoWI6BNrPp8s5nPDgwsqlLLXkKT7UndXhdubdfk1q3BPlyLjV_L7rkPZJuV3_dKdaH_wsJH3NkQBA"
1389
+ },
1390
+ "validFrom": "2025-10-02T20:33:12Z"
1391
+ },
1392
+ "registeredBy": "did:key:z6MknhUHrjoPhJVL1bi6JbbesdJCtWmgzk1o7yS66GMY5bnS",
1393
+ "timestamp": "2025-10-02T20:33:12Z"
1394
+ }
1395
+ },
1396
+ "blobs": {
1397
+ "baga6yaq6ed6zhbjgprqyxk7n54dndkeyrquhxnfamcqcujf4hueo76sk7wncc": "eyJhc3NldFR5cGUiOiJDb2RlIiwiZGVzY3JpcHRpb24iOiJQeXRob24gZmlsZSIsIm5hbWUiOiJjb21wdXRlLnB5In0=",
1398
+ "baga6yaq6ec5puhefmqgek36hacuqx25g5fdzhp4nd5afcdf2tl4ipg2idghfw": "eyJhc3NldFR5cGUiOiJEYXRhc2V0IiwiZGVzY3JpcHRpb24iOiJzb21lIGRhdGEgdGhhdCB3YXMgaGFzaGVkIiwibmFtZSI6ImlucHV0In0=",
1399
+ "baga6yaq6edn766rqoj3dr24tex4jwlnalnl7ht74pw5tduo2ekbbduaui7m4g": "eyJkZXNjcmlwdGlvbiI6IkFuIGV4YW1wbGUgcHJvamVjdCB0byBkZW1vbnN0cmF0ZSBhc3NvY2lhdGVkIGVudGl0aWVzLiIsIm5hbWUiOiJFeGFtcGxlIFByb2plY3QifQ==",
1400
+ "baga6yaq6ecd7si5fwqcmt7j5ewcycqbk7mvqaz7nl6t3czqmryg67nyqmxvj2": "eyJhc3NldFR5cGUiOiJNb2RlbCIsImNvbnRhY3RJbmZvcm1hdGlvbiI6IlZpYSBBcHBUZWsgY29tbXVuaXR5IG9yIGFzc29jaWF0ZWQgcGFwZXIgYXV0aG9ycyIsImRlc2NyaXB0aW9uIjoiSW5wdXQgZGF0YSBjb2xsZWN0aW9uIGZvciBzaW1wbGUgZXhhbXBsZS4iLCJmb3JtYXQiOiJEYXRhc2V0IChDU1YsIEpTT04sIGV0Yy4pIiwibGljZW5zZSI6IkN1c3RvbSBMaWNlbnNlIC0gUmVmZXIgdG8gdGhlIG9mZmljaWFsIHNpdGUgZm9yIHRlcm1zLiIsImxpY2Vuc2VMaW5rIjoiaHR0cHM6Ly9hcHB0ZWsuY29tL3JsaGYtY2xpbWF0ZS1mZWVkYmFjay1saWNlbnNlIiwibG9jYXRpb24iOiJodHRwczovL2FwcHRlay5jb20vcmxoZi1jbGltYXRlLWZlZWRiYWNrLWRhdGEiLCJuYW1lIjoib3V0cHV0IiwicGFwZXJVcmwiOiJodHRwczovL3JsaGZjbGltYXRlZGF0YS5hcHB0ZWsuY29tLyIsInNvdXJjZSI6IkdpdEh1YiIsInNvdXJjZUxpbmsiOiJodHRwczovL2dpdGh1Yi5jb20vYXBwdGVrL3JsaGYtY2xpbWF0ZS1mZWVkYmFjayIsInNvdXJjZVN5c3RlbSI6IkFwcFRlayBSZXBvc2l0b3J5Iiwic291cmNlZFR5cGUiOiJJbnRlcm5hbCIsInN0YXR1cyI6IkFjdGl2ZSJ9"
1401
+ }
1402
+ }