From 4101610f902d9f7c66187580348cd1f8e2a299fe Mon Sep 17 00:00:00 2001
From: Brent
Date: Tue, 6 Aug 2019 12:18:00 -0600
Subject: [PATCH 1/3] added example of issuer with object as value
Signed-off-by: Brent
---
index.html | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/index.html b/index.html
index 0a9353cad..707e30ffb 100644
--- a/index.html
+++ b/index.html
@@ -1604,6 +1604,30 @@ Issuer
example, "did:example:abfe13f712120431c276e12ecab"
).
+
+{
+ "@context": [
+ "https://www.w3.org/2018/credentials/v1",
+ "https://www.w3.org/2018/credentials/examples/v1"
+ ],
+ "id": "http://example.edu/credentials/3732",
+ "type": ["VerifiableCredential", "UniversityDegreeCredential"],
+ "issuer": {
+ "id": "https://example.edu/issuers/14",
+ "format": "jwk"
+ },
+ "issuanceDate": "2010-01-01T19:23:24Z",
+ "credentialSubject": {
+ "id": "did:example:ebfeb1f712ebc6f1c276e12ec21",
+ "degree": {
+ "type": "BachelorDegree",
+ "name": "Bachelor of Science and Arts"
+ }
+ },
+ "proof": { ... }
+}
+
+
From 0d75ad90947a9d3f27240f5a41a9f55f77942763 Mon Sep 17 00:00:00 2001
From: Brent
Date: Tue, 6 Aug 2019 14:55:19 -0600
Subject: [PATCH 2/3] added CSS magic
Signed-off-by: Brent
---
index.html | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/index.html b/index.html
index 707e30ffb..d4c8da59e 100644
--- a/index.html
+++ b/index.html
@@ -1613,8 +1613,8 @@ Issuer
"id": "http://example.edu/credentials/3732",
"type": ["VerifiableCredential", "UniversityDegreeCredential"],
"issuer": {
- "id": "https://example.edu/issuers/14",
- "format": "jwk"
+ "id": "https://example.com/keys/foo.jwk",
+ "type": "jwk"
},
"issuanceDate": "2010-01-01T19:23:24Z",
"credentialSubject": {
@@ -1624,7 +1624,7 @@ Issuer
"name": "Bachelor of Science and Arts"
}
},
- "proof": { ... }
+ "proof": { }
}
From 3c5b319b41b618b831c127dfaefea3004ac72b16 Mon Sep 17 00:00:00 2001
From: Brent
Date: Tue, 13 Aug 2019 12:51:26 -0600
Subject: [PATCH 3/3] jwk -> urn:example:jwk
Signed-off-by: Brent
---
index.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/index.html b/index.html
index d4c8da59e..6a900a07e 100644
--- a/index.html
+++ b/index.html
@@ -1614,7 +1614,7 @@ Issuer
"type": ["VerifiableCredential", "UniversityDegreeCredential"],
"issuer": {
"id": "https://example.com/keys/foo.jwk",
- "type": "jwk"
+ "type": "urn:example:jwk"
},
"issuanceDate": "2010-01-01T19:23:24Z",
"credentialSubject": {