Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Assignment 2 #638

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
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
Binary file added Assignment2/fernando0614.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 28 additions & 0 deletions Assignment2/fernando0614.rdf
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xml:base="http://www.ontogrid.net/StickyNote#"
xmlns="http://www.ontogrid.net/StickyNote#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<rdf:Description rdf:about="#event1">
</rdf:Description>
<rdf:Description rdf:about="#event2">
</rdf:Description>
<rdf:Description rdf:about="#event3">
<involves rdf:resource="#PinarAlper"/>
<involves rdf:resource="#CaroleGoble"/>
<eventDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-05-15</eventDate>
</rdf:Description>
<rdf:Description rdf:about="#event4">
<involves rdf:resource="#OscarCorcho"/>
<eventDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-05-16</eventDate>
</rdf:Description>
<rdf:Description rdf:about="#event5">
<involves rdf:resource="#CaroleGoble"/>
<eventDate rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2006-05-15</eventDate>
</rdf:Description>
<rdf:Description rdf:about="#OscarCorcho">
</rdf:Description>
<rdf:Description rdf:about="#PinarAlper">
</rdf:Description>
<rdf:Description rdf:about="#CaroleGoble">
</rdf:Description>
</rdf:RDF
14 changes: 14 additions & 0 deletions Assignment2/fernando0614.ttl
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
@prefix ns0: <http://www.ontogrid.net/StickyNote#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://www.ontogrid.net/StickyNote#event3>
ns0:involves ns0:PinarAlper, ns0:CaroleGoble ;
ns0:eventDate "2006-05-15"^^xsd:date .

ns0:event4
ns0:involves ns0:OscarCorcho ;
ns0:eventDate "2006-05-16"^^xsd:date .

ns0:event5
ns0:involves ns0:CaroleGoble ;
ns0:eventDate "2006-05-15"^^xsd:date .