forked from FacultadInformatica-LinkedData/Curso2020-2021
-
Notifications
You must be signed in to change notification settings - Fork 0
/
97Whitehat-JSONtoJSON-LD.jsonld
58 lines (54 loc) · 1.3 KB
/
97Whitehat-JSONtoJSON-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":"Gabriel Morillo Pileño",
"@type":"xsd:string"
},
"hometown":{
"@value":"Madrid",
"@type":"xsd:string"
},
"age":20,
"alma_mater":{
"@value":"Universidad Politecnica de Madrid",
"@type":"xsd:string"
},
"parents-name":{
"padre":{
"@value":"Javier",
"@type":"xsd:string"
},
"madre":{
"@value":"Elena",
"@type":"xsd:string"
}
},
"subjects":[{
"name":"Linked Data",
"teachers":["Oscar Corcho","Paola Espinoza","Raúl García Castro"],
"brief_Description":"data relationship with web and other tipe of web data"
},
{
"name":"Tecnicas de Computación Cientifica",
"teachers":["Vicente Martín, Juan Pedro Benito"],
"Brief Description":"show most cientific impact basic computational techniques to students "
}
git]
}