generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathZuyiLi-JSONtoJSONLD.jsonld
63 lines (61 loc) · 1.4 KB
/
ZuyiLi-JSONtoJSONLD.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
59
60
61
62
63
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"person": "https://oeg.fi.upm.es/ontologies/persons/",
"teacher": "https://oeg.fi.upm.es/ontologies/teachers/",
"subject": "https://oeg.fi.upm.es/ontologies/subjects/",
"hometown":"rdfs:label",
"almaMater":"rdfs:label"
}
"@id": "person:01",
"@type": "person",
"firtName": "Zuyi",
"lastName": "Li",
"hasHomeTown": "Hujiang",
"age": "23",
"almaMater": "UPM",
"nameOfFather": "Nai",
"nameOfMother": "Jin",
"subjects": [
{
"@id": "subject:01",
"@type": "subject",
"name": "semantic",
"teachers": [
{
"@id": "teacher:01",
"@type": "teacher",
"name": "Oscar"
"surname": "Corcho"
},
{
"@id": "teacher:02",
"@type": "teacher",
"name": "John"
"surname": "Smith"
}
]
"description": "semantic"
},
{
"@id": "subject:02",
"@type": "subject",
"name": "reconocimiento de formas",
"teachers": [
{
"@id": "teacher:03",
"@type": "teacher",
"name": "Juan",
"surnama": "Rodriguez"
},
{
"@id": "teacher:04",
"@type": "teacher",
"name": "Marta",
"surname": "Martinez"
}
]
"description": "reconocimiento de formas"
}
]
}