generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathAlvaroAlonso-0-fromJSONtoJSON-LD.jsonld
More file actions
69 lines (66 loc) · 1.36 KB
/
AlvaroAlonso-0-fromJSONtoJSON-LD.jsonld
File metadata and controls
69 lines (66 loc) · 1.36 KB
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
{
"@context": {
"xsd": "http://www.w3.org/2001/XMLSchema#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"subject": "https://oeg.fi.upm.es/ontologies/subject/",
"person": "https://oeg.fi.upm.es/ontologies/person/",
"name": "xsd:label",
"hometown":"rdfs:label",
"age":"xsd:integer",
"almaMater":"rdfs:label"
},
"@id": "person:Alvaro",
"@type": "person",
"name":"Alvaro Alonso Miguel",
"hometown":"Almeria",
"age":"72",
"almaMater":"UPM",
"parents":[
{
"@type":"person",
"name":"Roberto"
},
{
"@type":"person",
"name":"Maria"
}
],
"subjects":[
{
"@id": "subject:SemanticWeb",
"@type": "subject",
"name":"Semantic Web, Linked Data and Knowledge Graphs",
"teachers":[
{
"@id": "person:Oscar",
"@type":"person",
"name":"Oscar Corcho"
},
{
"@id": "person:Raul",
"@type":"person",
"name":"Raul Garcia"
}
],
"briefDescription":"Linked data and Knowledge Graphs"
},
{
"@id":"subject:GPTI",
"@type":"subject",
"name":"GPTI",
"teachers":[
{
"@id": "person:Edmundo",
"@type":"person",
"name":"Edmundo Tovar"
},
{
"@id": "person:Oscar",
"@type":"person",
"name":"Oscar Dieste"
}
],
"briefDescription":"Buenas practicas para la gestion de la empresa"
}
]
}