-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrivera-fromJSONtoJSON_LD.jsonld
57 lines (55 loc) · 1.84 KB
/
grivera-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
{
"@context": {
"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"persona": "https://www.persona.es/personas/españa#",
"briefDescription": "rdf:comment",
"name": "http://schema.org/name",
"fullName": "name:fullName",
"firstName": "name:firstName",
"secondName": "name:secondName",
"thirdName": "name:thirdName",
"hometown": "rdfs:label",
"age": "rdfs:label",
"almaMmater": "rdfs:label",
"fatherName": "rdfs:label",
"motherName": "rdfs:label",
"subjects": "rdfs:container"
},
"@id": "http://www.persona.es/recurso/gonzaloR",
"@type": "persona:estudiante",
"fullName": {
"@id": "http://www.persona.es/recurso/fullName/Gonzalo/Rivera/delPino",
"@type": "Name",
"firstName": "Gonzalo",
"secondName": "Rivera",
"thirdName": "del Pino"
},
"hometown": "Madrid",
"age": 18,
"almaMmater": "UPM",
"fatherName": "Gonzalo",
"motherName": "Juana",
"subjects": [
{
"@id": "http://www.persona.es/recurso/collegueSubject/IA",
"@type": "universitySubject",
"name": "IA",
"teacher": "Asun",
"briefDescription": "Artifical intelligence from a general view"
},
{
"@id": "http://www.persona.es/recurso/collegueSubject/KG",
"@type": "universitySubject",
"name": "KG",
"teacher": "Óscar",
"briefDescription":"Knowledge graphs, Linked data and Semantic web"
},
{
"@id": "http://www.persona.es/recurso/collegueSubject/programm",
"@type": "universitySubject",
"name": "Programmation",
"teacher": "Juan",
"briefDescription": "Programming oriented tu big data"
}
]
}