diff --git a/Assignment2/LauraRamirezM-fromJSONtoJSON-LD.jsonld b/Assignment2/LauraRamirezM-fromJSONtoJSON-LD.jsonld new file mode 100644 index 00000000..a0aff5ed --- /dev/null +++ b/Assignment2/LauraRamirezM-fromJSONtoJSON-LD.jsonld @@ -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." + } + ] +} diff --git a/Assignment2/LauraRamirezM-fromRDFtoJSON-LD.jsonld b/Assignment2/LauraRamirezM-fromRDFtoJSON-LD.jsonld new file mode 100644 index 00000000..aee9e1a7 --- /dev/null +++ b/Assignment2/LauraRamirezM-fromRDFtoJSON-LD.jsonld @@ -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" + } + } + } + ] +} \ No newline at end of file diff --git a/Assignment2/LauraRamirezM.png b/Assignment2/LauraRamirezM.png new file mode 100644 index 00000000..be0e403c Binary files /dev/null and b/Assignment2/LauraRamirezM.png differ diff --git a/Assignment2/LauraRamirezM.ttl b/Assignment2/LauraRamirezM.ttl new file mode 100644 index 00000000..4c24beb8 --- /dev/null +++ b/Assignment2/LauraRamirezM.ttl @@ -0,0 +1,14 @@ +@prefix : . +@prefix xsd: . + +: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. \ No newline at end of file