-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontext.json
46 lines (45 loc) · 1.06 KB
/
context.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"@context": {
"@version": 1.1,
"id": "@id",
"schema": "https://schema.org",
"type": "@type",
"name": "schema:name",
"description": "schema:description",
"identifier": "schema:identifier",
"VerifiableCredential": {
"@id": "schema:VerifiableCredential",
"@context": {
"id": "schema:String",
"issuer": {
"@id": "schema:issuer"
},
"issuanceDate": "schema:String",
"credentialSubject": {
"@id": "schema:credentialSubject"
}
}
},
"created": {
"@id": "schema:created"
},
"proofPurpose": {
"@id": "schema:proofPurpose"
},
"verificationMethod": {
"@id": "schema:verificationMethod"
},
"proof": {
"@id": "schema:proof",
"@context": { "id": "schema:String", "jws": "schema:String" }
},
"VerifiablePresentation": {
"@id": "schema:VerifiablePresentation",
"@context": {
"id": "schema:String",
"holder": "schema:holder"
}
},
"challenge": "schema:challenge"
}
}