forked from FacultadInformatica-LinkedData/Curso2020-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDalan98-fromJSONtoJSON-LD.jsonld
58 lines (55 loc) · 1.51 KB
/
Dalan98-fromJSONtoJSON-LD.jsonld
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
{
"@context":{
"xsd": "http://www.w3.org/2001/XMLSchema#",
"person":"http://www.ontologies.org/ontologies/People#",
"s":"http://www.example.org/",
"hometown":"s:hometown",
"fullname":"s:fullname",
"age":"s:age",
"alma_mater":"s:alma_mater",
"subjects":"s:subjects",
"parents-name":"s:parents-name",
"teachers":"s:teachers",
"padre":"s:padre",
"madre":"s:madre",
"brief_Description":"s:brief_Description"
"student":"s:student"
},
"@id":"http://www.example.org/yo",
"@type" : "person:student",
"fullname":{
"@value":"Daniel Rodriguez Bravo",
"@type":"xsd:string"
},
"hometown":{
"@value":"Madrid",
"@type":"xsd:string"
},
"age":22,
"alma_mater":{
"@value":"Universidad Politecnica de Madrid",
"@type":"xsd:string"
},
"parents-name":{
"padre":{
"@value":"Ramón",
"@type":"xsd:string"
},
"madre":{
"@value":"Isabel",
"@type":"xsd:string"
}
},
"subjects":[
{
"subject":"Semantic Web and Linked data",
"teachers":["Oscar Corcho Garcia","Raul Garcia Castro"],
"description":"Desarrolla 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."
},
{
"name":"EPAC Informáticos",
"teachers":["Elena Montiel","Jelena Bobkina"],
"brief_Description":"Trata la capacidad de comunicarse de forma efectiva con los compañeros, usuarios y el público en general acerca de cuestiones reales y problemas relacionados con la especialización elegida"
}
git]
}