├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── test-suite.puml └── test_suite.svg ├── config.json.example ├── config.json.jwt.example ├── implementations ├── BrightLink-report.json ├── Credly-report.json ├── Evernym-report.json ├── Factom-Harmony-Integrate-report.json ├── Gravity-report.json ├── Guillaume-Daumas-report.json ├── OpenAttestation-report.json ├── Sovrin-Ken_Ebert-report.json ├── Spruce-report.json ├── Toulouse-Kent-report.json ├── fake-bad.json ├── fake-good.json ├── generate.js ├── index.html ├── template.html ├── uPort-kotlin-report.json ├── uPort-report.json ├── vc.js-report.json └── verifiable-credentials-java-report.json ├── package.json ├── test └── vc-data-model-1.0 │ ├── 10-basic.js │ ├── 20-schema.js │ ├── 21-refresh.js │ ├── 22-evidence.js │ ├── 23-status.js │ ├── 35-tou.js │ ├── 40-ldp.js │ ├── 50-jwt.js │ ├── 60-zkp.js │ ├── input │ ├── example-009.jsonld │ ├── example-010.jsonld │ ├── example-011.jsonld │ ├── example-012.jsonld │ ├── example-013.jsonld │ ├── example-014-bad-no-credential-subject.jsonld │ ├── example-014-credential-subjects.jsonld │ ├── example-015-zkp-bad-no-credential-schema-id.jsonld │ ├── example-015-zkp-bad-no-credential-schema-type.jsonld │ ├── example-015-zkp-bad-no-credential-schema.jsonld │ ├── example-015-zkp-bad-no-proof.jsonld │ ├── example-015-zkp-bad-proof-missing-type.jsonld │ ├── example-015-zkp-credential-schema-array.jsonld │ ├── example-015-zkp-vp-bad-missing-proof.jsonld │ ├── example-015-zkp-vp-bad-no-credential-schema.jsonld │ ├── example-015-zkp-vp.jsonld │ ├── example-015-zkp.jsonld │ ├── example-016-jwt-no-exp.jsonld │ ├── example-016-jwt-no-jti.jsonld │ ├── example-016-jwt-presentation-no-iss.jsonld │ ├── example-016-jwt-presentation-no-jti.jsonld │ ├── example-016-jwt-presentation.jsonld │ ├── example-016-jwt-with-embedded-proof.jsonld │ ├── example-016-jwt.jsonld │ ├── example-016-jwt.jwt │ ├── example-017-missing-verifiableCredential.jsonld │ ├── example-1-bad-cardinality.jsonld │ ├── example-1-bad-url.jsonld │ ├── example-1-object-context.jsonld │ ├── example-1.jsonld │ ├── example-2-bad-cardinality.jsonld │ ├── example-2.jsonld │ ├── example-3-bad-cardinality.jsonld │ ├── example-3-bad-missing-type.jsonld │ ├── example-3.jsonld │ ├── example-4-bad-issuanceDate-cardinality.jsonld │ ├── example-4-bad-issuanceDate.jsonld │ ├── example-4-bad-issuer-cardinality.jsonld │ ├── example-4-bad-issuer-uri.jsonld │ ├── example-4-bad-missing-issuanceDate.jsonld │ ├── example-4-bad-missing-issuer.jsonld │ ├── example-4.jsonld │ ├── example-5-bad-proof-missing-type.jsonld │ ├── example-5.jsonld │ ├── example-6-bad-cardinality.jsonld │ ├── example-6-bad-expirationDate.jsonld │ ├── example-6.jsonld │ ├── example-7-bad-missing-id.jsonld │ ├── example-7-bad-missing-type.jsonld │ ├── example-7.jsonld │ ├── example-8-bad-missing-proof-type.jsonld │ ├── example-8-bad-type.jsonld │ └── example-8.jsonld │ └── util.js ├── vc-data-model-1.0.json └── w3c.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/README.md -------------------------------------------------------------------------------- /assets/test-suite.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/assets/test-suite.puml -------------------------------------------------------------------------------- /assets/test_suite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/assets/test_suite.svg -------------------------------------------------------------------------------- /config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/config.json.example -------------------------------------------------------------------------------- /config.json.jwt.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/config.json.jwt.example -------------------------------------------------------------------------------- /implementations/BrightLink-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/BrightLink-report.json -------------------------------------------------------------------------------- /implementations/Credly-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Credly-report.json -------------------------------------------------------------------------------- /implementations/Evernym-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Evernym-report.json -------------------------------------------------------------------------------- /implementations/Factom-Harmony-Integrate-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Factom-Harmony-Integrate-report.json -------------------------------------------------------------------------------- /implementations/Gravity-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Gravity-report.json -------------------------------------------------------------------------------- /implementations/Guillaume-Daumas-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Guillaume-Daumas-report.json -------------------------------------------------------------------------------- /implementations/OpenAttestation-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/OpenAttestation-report.json -------------------------------------------------------------------------------- /implementations/Sovrin-Ken_Ebert-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Sovrin-Ken_Ebert-report.json -------------------------------------------------------------------------------- /implementations/Spruce-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Spruce-report.json -------------------------------------------------------------------------------- /implementations/Toulouse-Kent-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/Toulouse-Kent-report.json -------------------------------------------------------------------------------- /implementations/fake-bad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/fake-bad.json -------------------------------------------------------------------------------- /implementations/fake-good.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/fake-good.json -------------------------------------------------------------------------------- /implementations/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/generate.js -------------------------------------------------------------------------------- /implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/index.html -------------------------------------------------------------------------------- /implementations/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/template.html -------------------------------------------------------------------------------- /implementations/uPort-kotlin-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/uPort-kotlin-report.json -------------------------------------------------------------------------------- /implementations/uPort-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/uPort-report.json -------------------------------------------------------------------------------- /implementations/vc.js-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/vc.js-report.json -------------------------------------------------------------------------------- /implementations/verifiable-credentials-java-report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/implementations/verifiable-credentials-java-report.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/package.json -------------------------------------------------------------------------------- /test/vc-data-model-1.0/10-basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/10-basic.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/20-schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/20-schema.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/21-refresh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/21-refresh.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/22-evidence.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/22-evidence.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/23-status.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/23-status.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/35-tou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/35-tou.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/40-ldp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/40-ldp.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/50-jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/50-jwt.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/60-zkp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/60-zkp.js -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-009.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-009.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-010.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-010.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-011.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-011.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-012.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-012.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-013.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-013.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-014-bad-no-credential-subject.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-014-bad-no-credential-subject.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-014-credential-subjects.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-014-credential-subjects.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema-id.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema-id.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-bad-no-credential-schema.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-bad-no-proof.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-bad-no-proof.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-bad-proof-missing-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-bad-proof-missing-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-credential-schema-array.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-credential-schema-array.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-vp-bad-missing-proof.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-vp-bad-missing-proof.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-vp-bad-no-credential-schema.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-vp-bad-no-credential-schema.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp-vp.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp-vp.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-015-zkp.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-015-zkp.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-no-exp.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-no-exp.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-no-jti.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-no-jti.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-presentation-no-iss.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-presentation-no-iss.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-presentation-no-jti.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-presentation-no-jti.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-presentation.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-presentation.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt-with-embedded-proof.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt-with-embedded-proof.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-016-jwt.jwt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-016-jwt.jwt -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-017-missing-verifiableCredential.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-017-missing-verifiableCredential.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-1-bad-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-1-bad-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-1-bad-url.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-1-bad-url.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-1-object-context.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-1-object-context.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-1.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-1.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-2-bad-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-2-bad-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-2.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-2.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-3-bad-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-3-bad-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-3-bad-missing-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-3-bad-missing-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-3.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-3.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-issuanceDate-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-issuanceDate-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-issuanceDate.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-issuanceDate.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-issuer-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-issuer-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-issuer-uri.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-issuer-uri.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-missing-issuanceDate.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-missing-issuanceDate.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4-bad-missing-issuer.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4-bad-missing-issuer.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-4.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-4.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-5-bad-proof-missing-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-5-bad-proof-missing-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-5.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-5.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-6-bad-cardinality.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-6-bad-cardinality.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-6-bad-expirationDate.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-6-bad-expirationDate.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-6.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-6.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-7-bad-missing-id.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-7-bad-missing-id.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-7-bad-missing-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-7-bad-missing-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-7.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-7.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-8-bad-missing-proof-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-8-bad-missing-proof-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-8-bad-type.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-8-bad-type.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/input/example-8.jsonld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/input/example-8.jsonld -------------------------------------------------------------------------------- /test/vc-data-model-1.0/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/test/vc-data-model-1.0/util.js -------------------------------------------------------------------------------- /vc-data-model-1.0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/vc-data-model-1.0.json -------------------------------------------------------------------------------- /w3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w3c/vc-test-suite/HEAD/w3c.json --------------------------------------------------------------------------------