generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathAlbertoguz-fromJSONtoJSON-LD
66 lines (64 loc) · 1.25 KB
/
Albertoguz-fromJSONtoJSON-LD
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
{
"@context": {
"name": "http://xmlns.com/foaf/0.1/name",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"hometown":"rdfs:label",
"age":"rdfs:label",
"almaMater":"rdfs:label",
"subject": "http://www.w3.org/subject/",
"person": "http://xmlns.com/foaf/0.1/person"
}
"@id": "person:Alberto",
"@type": "person",
"name":"Alberto Guzman Serrano",
"hometown":"Madrid",
"age":"26",
"almaMater":"UPM"
"parents":[
{
"@type":"person",
"name":"Mayte"
},
{
"@type":"person",
"name":"Alberto"
}
],
"subjects":[
{
"@id": "subject:nanotecnologia",
"@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"
},
{
"name":"GPTI",
"teachers":[
{
"@id": "person:Edmundo",
"@type":"person",
"name":"Edmundo Tovar"
},
{
"@id": "person:Oscar",
"@type":"person",
"name":"Oscar Dieste"
}
],
"briefDescription":"Buenas prácticas de las empresas"
}
]
}