-
Notifications
You must be signed in to change notification settings - Fork 0
/
individual-handle-credential-context.jsonld
60 lines (55 loc) · 1.7 KB
/
individual-handle-credential-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
54
55
56
57
58
59
60
{
"@context": {
"@version": 1.1,
"@protected": true,
"name": "http://schema.org/name",
"identifier": "http://schema.org/identifier",
"SelfSignedCredential": {
"@id": "https://example.com/terms/SelfSignedCredential",
"@context": {
"@version": 1.1,
"id": "@id",
"type": "@type"
}
},
"UserInfoCredential": {
"@id": "https://raw.githubusercontent.com/iampawankumar/credentials-schema/main/schemav1.jsonld#UserInfoCredential",
"@context": {
"@version": 1.1,
"@protected": true,
"id": "@id",
"type": "@type",
"name": "http://schema.org/name",
"identifier": "http://schema.org/identifier"
}
},
"PII":{
"@id": "https://raw.githubusercontent.com/iampawankumar/credentials-schema/main/schemav1.jsonld#PII",
"@context": {
"@version": 1.1,
"@protected": true,
"id": "@id",
"type": "@type",
"schema": "http://schema.org/",
"familyName":"schema:familyName",
"givenName":"schema:givenName",
"email": "schema:email",
"telephone": "schema:telephone",
"address": "schema:address",
"description": "schema:description",
"ipAddress": "schema:ipAddress",
"stacks": "schema:stacks",
"linkedin": "schema:linkedin",
"twitter": "schema:twitter",
"facebook": "schema:facebook",
"instagram": "schema:instagram",
"gmail": "schema:gmail",
"cid": "schema:cid",
"handle": "schema:handle",
"defaultValue": "schema:defaultValue",
"public": "schema:public",
"private": "schema:private"
}
}
}
}