generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathNoorEl-fromJSONtoJSON-LD.jsonld
46 lines (46 loc) · 1.42 KB
/
NoorEl-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
{
"@context": {
"ex": "http://example.org#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@graph": [
{
"@id": "ex:ElHaddadNoor",
"@type": "ex:Person",
"ex:fullName": "El Haddad Noor",
"ex:hometown": "Casablanca",
"ex:age": {
"@value": 22,
"@type": "xsd:integer"
},
"ex:almaMater": "UTBM",
"ex:parents": {
"ex:mother": "Sana",
"ex:father": "Simo"
},
"ex:subjects": [
{
"@id": "ex:DataProcesses",
"@type": "ex:Subject",
"ex:name": "Data Processes",
"ex:teacher": "Ernestina Menasalvas",
"ex:description": "Focuses on data handling techniques, from collection to processing, aimed at optimizing data workflows."
},
{
"@id": "ex:DataVisualization",
"@type": "ex:Subject",
"ex:name": "Data Visualization",
"ex:teacher": "Pablo Toharia",
"ex:description": "Covers methods to represent data graphically, making complex datasets more understandable."
},
{
"@id": "ex:CloudComputing",
"@type": "ex:Subject",
"ex:name": "Cloud Computing",
"ex:teacher": "Marta Patiño",
"ex:description": "Introduces cloud infrastructure and services, with emphasis on scalability and cloud-based solutions."
}
]
}
]
}