From 15c6eb3333396d1df68ac306a4c5c97f254012a1 Mon Sep 17 00:00:00 2001 From: philpotisk <55081379+philpotisk@users.noreply.github.com> Date: Thu, 7 Sep 2023 20:57:05 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4f2bff7f1..d63bf1081 100644 --- a/README.md +++ b/README.md @@ -93,15 +93,13 @@ fun main() { ## Standards & Specifications -- [EBSI Wallet Conformance](https://ec.europa.eu/digital-building-blocks/wikis/display/EBSIDOC/EBSI+Wallet+Conformance+Testing) +- [EBSI Wallet Conformance](https://api-conformance.ebsi.eu/docs/wallet-conformance) - [Verifiable Credentials Data Model 1.0](https://www.w3.org/TR/vc-data-model/) +- [OpenID for Verifiable Credentials](https://openid.net/openid4vc/) - [Decentralized Identifiers (DIDs) v1.0](https://w3c.github.io/did-core/) - [DID Method Rubric](https://w3c.github.io/did-rubric/) - [did:web Decentralized Identifier Method Specification](https://w3c-ccg.github.io/did-method-web/) - [The did:key Method v0.7](https://w3c-ccg.github.io/did-method-key/) -- [Self-Issued OpenID Provider v2](https://openid.net/specs/openid-connect-self-issued-v2-1_0.html) -- [OpenID Connect for Verifiable Presentations](https://openid.net/specs/openid-connect-4-verifiable-presentations-1_0-07.html) -- [OpenID Connect for Verifiable Credential Issuance](https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0.html) ## License From 0d3d24add7bc7f8a9801bdb91bb5dc8f951b206d Mon Sep 17 00:00:00 2001 From: philpotisk <55081379+philpotisk@users.noreply.github.com> Date: Thu, 7 Sep 2023 21:14:26 +0200 Subject: [PATCH 2/2] fix: dead links to schemas --- .../kotlin/id/walt/auditor/AuditorTest.kt | 26 ------------------- 1 file changed, 26 deletions(-) diff --git a/src/test/kotlin/id/walt/auditor/AuditorTest.kt b/src/test/kotlin/id/walt/auditor/AuditorTest.kt index 38429f535..2ee0e49e6 100644 --- a/src/test/kotlin/id/walt/auditor/AuditorTest.kt +++ b/src/test/kotlin/id/walt/auditor/AuditorTest.kt @@ -310,37 +310,11 @@ class AuditorCommandTest : StringSpec() { "$EBSI_SCHEMA_PATH/EbsiVerifiableAttestationSchema.json" ) - // VerifiableAttestation - verification via http-link - val ebsiVerifiableAttestationGenericSchemaUrl = - URL("$EBSI_TSR_BASE/0x23039e6356ea6b703ce672e7cfac0b42765b150f63df78e2bd18ae785787f6a2") - runCatching { ebsiVerifiableAttestationGenericSchemaUrl.openStream() }.onSuccess { - validateSchema( - "$EBSI_VC_PATH/EbsiVerifiableAttestationGeneric.json", - ebsiVerifiableAttestationGenericSchemaUrl.toExternalForm() - ) - } - - // VerifiableAttestation - verification via http-link in attribute credentialSchema - validateSchema("$EBSI_VC_PATH/EbsiVerifiableAttestationGeneric.json") - - // VerifiableAccreditationToAccredit - validateSchema("$EBSI_VC_PATH/EbsiVerifiableAccreditationToAccredit.json") - // AccreditedVerifiableAttestation validateSchema( "$EBSI_VC_PATH/EbsiAccreditedVerifiableAttestation.json", "$EBSI_SCHEMA_PATH/AccreditedVerifiableAttestation.json" ) - - // EbsiDiplomaVerifiableAccreditation (Multi UNI Pilot) - val ebsiDiplomaVerifiableAccreditationSchemaUrl = - URL("$EBSI_TSR_BASE/0x960904265eba56f0c3a171f19af2970d3c62eb0ed1cd7981065261f37f007101") - runCatching { ebsiDiplomaVerifiableAccreditationSchemaUrl.openStream() }.onSuccess { - validateSchema( - "$EBSI_VC_PATH/EbsiDiplomaVerifiableAccreditation.json", - ebsiDiplomaVerifiableAccreditationSchemaUrl.toExternalForm() - ) - } } "9. test EbsiTrustedSchemaRegistryPolicy" {