Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions Assignment2/LauraRamirezM-fromJSONtoJSON-LD.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
"@context": "http://schema.org/",
"@type": "Person",
"fullName": "Laura Ramírez",
"hometown": "Madrid",
"age": 25,
"almaMater": "Universidad Politecnica de Madrid",
"parentsName": ["Luismi", "Ana"],
"subjects": [
{
"@type": "Subject",
"name": "Open Data And Knowledge Graphs",
"teachers": ["Oscar Corcho","Raul Garcia","Daniel Garijo"],
"briefDescription": "During this course you will learn about the main foundations for Knowledge Graphs, including the W3 recommendations that are applicable in this area (RDF, RDF Schema, SPARQL, OWL, CSV on the Web) and methodologies for the generation and publication of Knowledge Graphs from multiple heterogeneous data sources and formats, using Linked Data technologies."
},
{
"@type": "Subject",
"name": "Data Processes",
"teachers": ["Alejandro Rodriguez", "Ernestina Menasalvas", "Antonio Jesús Diaz Honrubia"],
"briefDescription": "This course introduces fundamental tools and technologies necessary to transform raw data into information."
}
]
}
33 changes: 33 additions & 0 deletions Assignment2/LauraRamirezM-fromRDFtoJSON-LD.jsonld
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"@context": {
"ex": "http://example.org/#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@id": "ex:Class01",
"includes": [
{
"@id": "ex:Sensor029",
"hasMeasurement": {
"@id": "ex:Measurement8401",
"hasTemperature": {
"@value": "29",
"@type": "xsd:integer"
},
"atTime": {
"@value": "2010-06-12T12:00:12",
"@type": "xsd:dateTime"
}
}
},
{
"@id": "ex:Computer101",
"hasOwner": {
"@id": "ex:User10A",
"hasName": {
"@value": "Pedro",
"@type": "xsd:string"
}
}
}
]
}
Binary file added Assignment2/LauraRamirezM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions Assignment2/LauraRamirezM.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix : <http://example.org/#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

:Class01 :includes :Sensor029;
:Computer101 .

:Sensor029 :hasMeasurement :Measurement8401 .

:Measurement8401 :hasTemperature "29"^^xsd:integer;
:atTime "2010-06-12T12:00:12"^^xsd:dateTime .

:Computer101 :hasOwner :User10A .

:User10A :hasName "Pedro"^^xsd:string.