generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathzzulz-fromJSONtoJSON-LD.jsonld
85 lines (85 loc) · 2.25 KB
/
zzulz-fromJSONtoJSON-LD.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
{
"@context": {
"rdf": "http://www.w3.org/1999/02/22-rdf-syntax-ns#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"fullName": "rdf:name",
"hometown": "rdf:homeLocation",
"age": {
"@id": "rdf:age",
"@type": "xsd:integer"
},
"almaMater": "rdf:alumniOf",
"parents": {
"@id": "rdf:parent"
},
"subjects": "rdf:Course",
"subjectName": "rdf:name",
"teacher": "rdf:teacher",
"briefDescription": "rdf:description"
},
"@type": "rdf:Person",
"fullName": "Ling Zhang",
"hometown": {
"@type": "rdf:Place",
"fullName": "China"
},
"age": 34,
"almaMater": {
"@type": "rdf:EducationalOrganization",
"fullName": "Universidad Politécnica de Madrid"
},
"parents": [
{
"@type": "rdf:Person",
"fullName": "Baixue Zhang"
},
{
"@type": "rdf:Person",
"fullName": "Dexue Zhao"
}
],
"subjects": [
{
"@type": "rdf:Course",
"subjectName": "Open Data and Knowledge Graphs",
"teacher": [
{
"@type": "rdf:Person",
"fullName": "Oscar Corcho"
},
{
"@type": "rdf:Person",
"fullName": "Raúl García"
}
],
"briefDescription": "Learn about the data representation, RDF, SPARQL, and methodologies for generating, linking, and publishing knowledge graphs from diverse data sources."
},
{
"@type": "rdf:Course",
"subjectName": "Statistical Data Analysis",
"teacher": {
"@type": "rdf:Person",
"fullName": "Arminda Moreno Díaz"
},
"briefDescription": "Learn about the foundation of statistics and practical data analysis skills."
},
{
"@type": "rdf:Course",
"subjectName": "Data Visualization",
"teacher": {
"@type": "rdf:Person",
"fullName": "Pablo Toharia"
},
"briefDescription": "Learn about the visualization analysis and design principles."
},
{
"@type": "rdf:Course",
"subjectName": "Data Process",
"teacher": {
"@type": "rdf:Person",
"fullName": "Ernestina Menasalvas"
},
"briefDescription": "Learn about the overall data process and practical skills including data preparation, modeling, and deployment."
}
]
}