generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathGNajeral-fromJSONtoJSON-LD.jsonld
More file actions
58 lines (52 loc) · 1.52 KB
/
GNajeral-fromJSONtoJSON-LD.jsonld
File metadata and controls
58 lines (52 loc) · 1.52 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
{
"@context": {
"Persona": "http://www.tarea2/Persona/",
"name": "http://www.tarea2/Persona/name",
"hometown": "http://www.tarea2/Persona/hometown",
"age": "http://www.tarea2/Persona/age",
"almaMater": "http://www.tarea2/Persona/almaMater",
"parent": "http://www.tarea2/Persona/parent",
"subject": "http://www.tarea2/Persona/subject"
},
"@id": "Guillermo",
"@type": "Persona",
"name": "Guillermo",
"hometown":"Madrid",
"age":"21",
"almaMater":"UPM",
"Padres": [
{
"@id": "Name:Carmen"
},
{
"@id": "Name:Fernando"
}
],
"Subjects": [
{
"@id": "Name:WebSemantics",
"Description": "Se analizan las ciencias del Linked Data",
"Proffessor": "ocorcho"
},
{
"@id": "Name:RDF",
"Description": "Se analizan las ciencias del Reconocimiento de Formas",
"Proffessor": "Luis"
},
{
"@id": "Name:INGESOFT2",
"Description": "Se analizan las ciencias de la ingenieria del software",
"Proffessor": "Tomas San Feliu"
},
{
"@id": "Name:GPTI",
"Description": "Se analizan las ciencias de GPTI",
"Proffessor": "Edmundo Tovar"
},
{
"@id": "Name:SDP",
"Description": "Se analizan las ciencias de los sistemas de planificación",
"Proffessor": "Vicente"
}
]
}