generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathgonzalinux-fromJSONtoJSON-LD.jsonld
More file actions
73 lines (66 loc) · 1.35 KB
/
gonzalinux-fromJSONtoJSON-LD.jsonld
File metadata and controls
73 lines (66 loc) · 1.35 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
70
71
72
73
{
"@context":{
"person":"http://gob.es/personas",
"rdfs":"http://www.w3.org/2000/01/rdf-schema#",
"name":"rdfs:label",
"fullName":"rdfs:label",
"hometown":"rdfs:label",
"age":"rdfs:label",
"alma-mater":"rdfs:label",
"parents":"http://upm.fi.es/padres/",
"teachers":"http://upm.fi.es/teachers/",
"subjects":"http://upm.fi.es/subjects",
"subject":"http://upm.fi.es/subjects",
"description":"rdfs:label"
},
"@id":"http://upm.fi.es/alumnos/GonzaloLeon",
"@type":"person",
"fullName": "Gonzalo Leon Aragon",
"hometown":"Navas del Rey",
"age":21,
"alma-mater":"UPM",
"parents":[
{
"@type":"person",
"name":"Jesus"
}
,
{
"@type":"person",
"name":"MºCarmen"
}
],
"subjects":[
{
"@id":"ide1",
"@type":"subject",
"name":"Semantic Web",
"teachers":[
{
"@type": "teacher",
"name":"Oscar Corcho"
},
{
"@type": "teacher",
"name": "Raul García"
}
],
"description":"Una asignatura muy buena"
},
{"@id":"ide2",
"@type":"subject",
"name":"Ingenieria de Software",
"teachers":[
{
"@type": "teacher",
"name":"Tomas san Feliu"
},
{
"@type": "teacher",
"name": "Ana María Moreno"
}
],
"description":"Una asignatura no tan buena"
}
]
}