-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdavidlm28fromJSONtoJSON-LD.jsonld
48 lines (45 loc) · 1.77 KB
/
davidlm28fromJSONtoJSON-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
{
"@context": {"rdfs": "http://www.w3.org/2000/01/rdf-schema#",
"persona": "http://www.example.org/persona#",
"foaf": "http://xmlns.com/foaf/0.1/",
"fullName": "foaf:name",
"hometown": "rdfs:label",
"age": "rdfs:label",
"almaMmater": "rdfs:label",
"fathersName": "foaf:name",
"mothersName": "foaf:name",
"subjects": "rdfs:container",
"teacher": "foaf:name",
"briefDescription": "rdf:comment"},
"@id": "http://www.example.org/recurso/David",
"@type": "example:Persona",
"fullName":"David Lázaro Martín",
"hometown": "Segovia",
"age": "19",
"almaMater": "Politécnica de Madrid",
"fatherName": "Roberto Lázaro",
"motherName": "Pilar Martín",
"subjects": [
{
"@id": "http://www.example.org/recurso/Asignatura/KnowledgeGraphs",
"@type": "Asignatura",
"name": "Knowledge Graphs",
"teacher": "Oscar Corcho",
"briefDescription": "Web Semántica, Linked Data, Queries..."
},
{
"@id": "http://www.example.org/recurso/Asignatura/AlgoritmicaNumerica",
"@type": "Asignatura",
"name": "Algorítmica Numérica",
"teacher": "Antonio Tabernero",
"briefDescription": "Aprender el funcionamiento interno de las operaciones en el interior del ordenador"
},
{
"@id": "http://www.example.org/recurso/Asignatura/InteligenciaArtificial",
"@type": "Asignatura",
"name": "Inteligencia Artificial",
"teacher": "Asunción",
"briefDescription": "Introducción a las bases de la Inteligencia Artificial"
}
]
}