forked from kumarpawantarento/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSkillExternalCredentialTemplate.json
54 lines (54 loc) · 1.29 KB
/
SkillExternalCredentialTemplate.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
47
48
49
50
51
52
53
54
{
"@context": [
"https://www.w3.org/2018/credentials/v1",
{
"@context": {
"@version": 1.1,
"@protected": true,
"SkillCertificate": {
"@id": "https://github.com/sunbird-specs/vc-specs#SkillCertificate",
"@context": {
"id": "@id",
"@version": 1.1,
"@protected": true,
"skills": "schema:Text"
}
},
"Person":{
"@id":"https://github.com/sunbird-specs/vc-specs#Person",
"@context": {
"name":"schema:Text",
"gender":"schema:Text",
"dob":"schema:Text",
"rollNumber":"schema:Text"
}
},
"trainedOn":{
"@id":"https://github.com/sunbird-specs/vc-specs#trainedOn",
"@context": {
"name":"schema:Text"
}
},
"skills": {
"@id":"https://github.com/sunbird-specs/vc-specs#skills",
"@container": "@list"
}
}
}
],
"type": [
"VerifiableCredential"
],
"issuanceDate": "2021-08-27T10:57:57.237Z",
"credentialSubject": {
"type": "Person",
"name": "{{name}}",
"skills": [
{{#skills}}
"{{skill}}",
{{/skills}}
""
]
},
"issuer": "did:web:sunbirdrc.dev/vc/skill"
}