-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfromJSON_to_JSON-LD_IgnacioGarcía.jsonld
64 lines (62 loc) · 2.18 KB
/
fromJSON_to_JSON-LD_IgnacioGarcía.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
64
{
"@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/Ignacio",
"@type": "persona:estudiante",
"fullName": {
"@id": "http://www.persona.es/recurso/fullName/Ignacio/García/Luengo",
"@type": "Name",
"firstName": "Ignacio",
"secondName": "García",
"thirdName": "Luengo"
},
"hometown": "Madrid",
"age": 19,
"almaMmater": "UPM",
"fatherName": "Victor",
"motherName": "Piedad",
"subjects": [
{
"@id": "http://www.persona.es/recurso/collegueSubject/AI",
"@type": "universitySubject",
"name": "AI",
"teacher": "Asun",
"briefDescription": "Introduction to AI concepts"
},
{
"@id": "http://www.persona.es/recurso/collegueSubject/KG-LD-SW",
"@type": "universitySubject",
"name": "KG-LD-SW",
"teacher": "Óscar",
"briefDescription":"Knowledge graphs, Linked data and Semantic web"
},
{
"@id": "http://www.persona.es/recurso/collegueSubject/programming",
"@type": "universitySubject",
"name": "Programmation oriented to data science",
"teacher": "Juan",
"briefDescription": "Programming oriented to data science concepts"
},
{
"@id": "http://www.persona.es/recurso/collegueSubject/DataExchange",
"@type": "universitySubject",
"name": "Data Exchange",
"teacher": "Jose Ramon",
"briefDescription": "XML and JSON syntax comprehension oriented to data science"
}
]
}