-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path01_profiles.jsonld
131 lines (131 loc) · 4.05 KB
/
01_profiles.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"ledger": "academic-credentials-dataset",
"@context": {
"id": "@id",
"type": "@type",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"sh": "http://www.w3.org/ns/shacl#",
"schema": "http://schema.org/",
"skos": "http://www.w3.org/2008/05/skos#",
"wiki": "https://www.wikidata.org/wiki/",
"f": "https://ns.flur.ee/ledger#",
"vc": "https://w3.org/2018/credentials#",
"clr": "https://purl.imsglobal.org/spec/vc/ob/vocab.html#",
"acd": "https://academic-credential-dataset.net/ns/"
},
"insert": [
{
"id": "acd:learners/freddyyeti1",
"type": "clr:Profile",
"schema:givenName": "Freddy",
"schema:familyName": "Yeti",
"schema:email": "[email protected]",
"clr:dateOfBirth": "2016-11-24",
"acd:profileType": "Learner"
},
{
"id": "acd:learners/lucialong3",
"type": "clr:Profile",
"schema:givenName": "Lucia",
"schema:familyName": "Long",
"schema:email": "[email protected]",
"clr:dateOfBirth": "2023-01-30",
"acd:profileType": "Learner"
},
{
"id": "acd:learners/nessieelasmo1",
"type": "clr:Profile",
"schema:givenName": "Nessie",
"schema:familyName": "Elasmosauridae",
"schema:email": "[email protected]",
"clr:dateOfBirth": "564-08-22",
"acd:profileType": "Learner"
},
{
"id": "acd:institutions/fu",
"type": "clr:Profile",
"schema:name": "Fluree University",
"schema:url": "https://fluree.edu/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/wssu",
"type": "clr:Profile",
"schema:name": "Winston-Salem State University",
"schema:url": "https://wssu.edu/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/wfu",
"type": "clr:Profile",
"schema:name": "Wake Forest University",
"schema:url": "https://www.wfu.edu/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/ftcc",
"type": "clr:Profile",
"schema:name": "Forsyth Tech Community College",
"schema:url": "https://forsythtech.edu/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/uncc",
"type": "clr:Profile",
"schema:name": "University of North Carolina Charlotte",
"schema:url": "https://www.charlotte.edu/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/ncees",
"type": "clr:Profile",
"schema:name": "National Council of Examiners for Engineering and Surveying",
"schema:url": "https://ncees.org/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/pearsonvue",
"type": "clr:Profile",
"schema:name": "Pearson VUE",
"schema:url": "https://home.pearsonvue.com/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/ncsite",
"type": "clr:Profile",
"schema:name": "The North Carolina Section of the Institute of Transportation Engineers",
"schema:url": "https://ncsite.org/index.php",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/asce",
"type": "clr:Profile",
"schema:name": "The American Society of Civil Engineers",
"schema:url": "https://www.asce.org/",
"acd:profileType": "Institution"
},
{
"id": "acd:institutions/ascenc",
"type": "clr:Profile",
"schema:name": "North Carolina ASCE Section",
"schema:url": "https://www.ascenc.org/",
"acd:profileType": "Institution"
},
{
"id": "acd:employers/volvogroup",
"type": "clr:Profile",
"schema:name": "Volvo Group",
"schema:url": "https://www.volvogroup.com/",
"acd:profileType": "Employer"
},
{
"id": "acd:employers/hondajet",
"type": "clr:Profile",
"schema:name": "Honda Aircraft Company",
"schema:url": "https://www.hondajet.com/",
"acd:profileType": "Employer"
}
]
}