generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 58
/
dmellish99-JSONtoJSON.jsonld
114 lines (114 loc) · 3.01 KB
/
dmellish99-JSONtoJSON.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
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"data": "http://DakotaMellish.com/ontology#",
"age": "rdfs:label",
"name":"rdfs:label",
"teachers":"rdfs:label",
"description":"rdfs:label",
"almaMater": "rdfs:label",
"parents": "rdf:label",
"schoolSubjects": "rdfs:label",
"Course":"data:Course",
"Person":"data:Person"
},
"@id": "Dakota Mellish",
"@type": "Person",
"age": 25,
"almaMater": "Olivet Nazarene University",
"parents": [
{
"@id": "Mother",
"@type": "Person",
"name": "Jeanine Mellish"
},
{
"@id": "Father",
"@type": "Person",
"name": "Kevin Mellish"
}
],
"schoolSubjects": [
{
"@id": "OKG",
"@type": "Course",
"name": "Open Data and Knowledge Graphs",
"teachers": [
"Oscar Corcho",
"Daniel Garijo"
],
"description": "Learn about open data, rdf, sparql"
},
{
"@id": "ML",
"@type": "Course",
"name": "Machine Learning",
"teachers": [
"Concha Bielza",
"Pedro Larranaga",
"Victor Alejandre"
],
"description": "Learn about supervised/unsupervised learning techniques"
},
{
"@id": "DP",
"@type": "Course",
"name": "Data Processes",
"teachers": [
"Ernestina Menasalvas",
"Antonio Jesús Díaz Honrubia",
"Alejandro Rodríguez"
],
"description": "Learn about transforming data science problems to a business context"
},
{
"@id": "IS",
"@type": "Course",
"name": "Intelligent Systems",
"teachers": [
"Martin Molina",
"Mari Carmen Suárez de Figueroa",
"Víctor Rodríguez Doncel"
],
"description": "Use AI to build neural networks, ontology engineering and natural language processing"
},
{
"@id": "SDA",
"@type": "Class",
"name": "Statistical Data Analysis",
"teachers": [
"Arminda Moreno Díaz"
],
"description": "Survey of statistical methods in R"
},
{
"@id": "CCBDE",
"@type": "Course",
"name": "Cloud computing and big data ecosystems design",
"teachers": [
"Marta Patiño"
],
"description": "Understand how to construct and design large databases"
},
{
"@id": "DVBD",
"@type": "Course",
"name": "Data Visualization",
"teachers": [
"Pablo Toharia"
],
"description": "Understand how to visualize data effectively in Shiny"
},
{
"@id": "BD",
"@type": "Course",
"name": "Big Data",
"teachers": [
"Antonio LaTorre",
"Julián Arenas",
"Jorge Acosta"
],
"description": "Understand how to work with big data in Apache Spark"
}
]
}