forked from FacultadInformatica-LinkedData/Curso2021-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathArr0y0JSONtoJSON-LD.jsonld
More file actions
59 lines (58 loc) · 1.51 KB
/
Copy pathArr0y0JSONtoJSON-LD.jsonld
File metadata and controls
59 lines (58 loc) · 1.51 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
{
"@context":{
"person":"http://oeg.fi.upm.es/people/person/",
"name":"person:name",
"secondName":"person:secondName",
"DOB":"person:dateOfBirth",
"birthPlace":"person:birthPlace",
"parents":"person:parents",
"university":"http://oeg.fi.upm.es/organisations/academic/university",
"subjects":"university:subjects",
"teacher":"university:teacher",
"city":"http://oeg.fi.upm.es/city"
},
"@id":"person:miguelArroyo",
"@type":"person",
"name":"Miguel",
"secondName":"Arroyo",
"DOB":"10-02-2000",
"birthplace":"Bridgend",
"university":"Universidad Politecncia de Madrid",
"parents":[
{
"@id":"person:mum",
"@type":"person",
"name":"best",
"secondName":"mum"
},
{
"@id":"person:dad",
"@type":"person",
"name":"best",
"secondName":"dad"
}
],
"subjects":[
{
"@id":"SW",
"@type":"subject",
"name": "Semantic Web",
"teachers":[
{
"@id":"person:RaGa",
"type":"teacher",
"name":"Raul",
"secondName":"Garcia"
},
{
"@id":"person:OscCor",
"@type":"teacher",
"name": "Oscar",
"secondName":"Corcho"
}
],
"description":"El objetivo de esta asignatura es proporcionar la base teórica y práctica sobre los fundamentos metodológicos y tecnológicos implicados en la generación y publicación de vocabularios y datos de la Web de datos enlazados.",
"credits":"3"
}
]
}