forked from FacultadInformatica-LinkedData/Curso2021-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathjoselucomino-fromJSONtoJSON-LD.jsonld
More file actions
51 lines (49 loc) · 1.19 KB
/
Copy pathjoselucomino-fromJSONtoJSON-LD.jsonld
File metadata and controls
51 lines (49 loc) · 1.19 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
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"person": "http://www.w3.org/2003/01/person/",
"subject": "http://www.w3.org/2006/subject/sb#",
"name": "rdfs:label",
"age": "rdfs:label"
},
"@id": "http://www.assignment2.org/joselucomino",
"@type": "person",
"name": "José Luis Comino Aparicio",
"age": 21,
"subjects": [
{
"@id": "http://www.fi.upm.es/GPTI",
"@type": "subject",
"name": "Gestión de procesos de tecnologías de la información",
"teachers": [
{
"@id": "http://www.edmundo.org",
"@type": "person",
"name": "Edmundo"
},
{
"@id": "http://www.oscar.org",
"@type": "person",
"name": "Óscar"
}
]
},
{
"@id": "http://www.fi.upm.es/EPAC",
"@type": "subject",
"name": "English For Professional And Academic Communication",
"teachers": [
{
"@id": "http://www.elenamontiel.org",
"@type": "person",
"name": "Elena"
},
{
"@id": "http://www.jelenabobkina.org",
"@type": "person",
"name": "Jelena"
}
]
}
]
}