From af7f69abff21cc80a799b47c2fe7102ec66393a3 Mon Sep 17 00:00:00 2001 From: Manu Sporny Date: Thu, 27 Jul 2017 12:04:41 -0400 Subject: [PATCH] Add section on evidence. Related to #9 and #59. --- index.html | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/index.html b/index.html index 9a9dd74e7..0d8805e1c 100644 --- a/index.html +++ b/index.html @@ -602,6 +602,51 @@

Revocation

+
+

Evidence

+

Evidence information for the claims in the + Verifiable Claims Model may be provided by adding the + following property: +

+ +
+
evidence
+
The value of this property MUST be one or more evidence schemes + that provides enough information to a inspector-verifier + to determine whether or not the evidence gathered meets their + requirements. +
+
+ +

+The group is currently determining whether or not they should publish a +very simple scheme for evidence as a part of this specification. +

+ +
+{
+  "@context": "https://w3id.org/security/v1",
+  "id": "http://dmv.example.gov/credentials/3732",
+  "type": ["Credential", "ProofOfAgeCredential"],
+  "issuer": "https://dmv.example.gov/issuers/14",
+  "issued": "2010-01-01T19:73:24Z",
+  "claim": {
+    "id": "did:example:ebfeb1f712ebc6f1c276e12ec21",
+    "ageOver": 21
+  },
+  "evidence": {
+    "id": "https://dmv.example.gov/evidence/f2aeec97-fc0d-42bf-8ca7-0548192d4231",
+    "type": "DocumentVerification",
+    "verifier": "https://dmv.example.gov/issuers/14",
+    "evidenceDocument": "DriversLicense",
+    "subjectPresence": "Physical",
+    "documentPresence": "Physical"
+  },
+  "signature": { ... }
+}
+        
+ +