-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwallet-credentials-context.jsonld
53 lines (51 loc) · 1.49 KB
/
wallet-credentials-context.jsonld
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
47
48
49
50
51
52
53
{
"@context": {
"@version": 1.1,
"@protected": true,
"name": "http://schema.org/name",
"identifier": "http://schema.org/identifier",
"brand": "http://schema.org/brand",
"image": "http://schema.org/image",
"VerifiableCredential": "https://www.w3.org/2018/credentials#VerifiableCredential",
"SelfSignedCredential": {
"@id": "https://example.com/terms/SelfSignedCredential",
"@context": {
"@version": 1.1,
"id": "@id",
"type": "@type"
}
},
"WalletCredentials": {
"@id": "https://raw.githubusercontent.com/iampawankumar/verifiable-credentials-schema-repo/main/wallet-credential-schema-v1.jsonld#WalletCredentials",
"@context": {
"@version": 1.1,
"@protected": true,
"id": "@id",
"type": "@type",
"name": "http://schema.org/name",
"brand": "http://schema.org/brand",
"image": "http://schema.org/image",
"bgColor": {
"@id": "https://example.com/terms/bgColor",
"@type": "xsd:string"
},
"claims": {
"@id": "https://example.com/terms/claims",
"@context": {
"userID": {
"@id": "https://example.com/terms/userID",
"@type": "xsd:string"
}
}
}
}
},
"JsonSchemaValidator2018": {
"@id": "https://w3id.org/security#JsonSchemaValidator2018",
"@context": {
"@version": 1.1,
"type": "@type"
}
}
}
}