diff --git a/examples/article.ttl b/examples/article.ttl
new file mode 100644
index 0000000..e830c78
--- /dev/null
+++ b/examples/article.ttl
@@ -0,0 +1,40 @@
+prefix foaf:
+prefix dc:
+prefix rdf:
+prefix bibo:
+
+##
+# First, we have a standard journal article. We link the article directly to the journal, though a more detailed representation could also model the issue. Also, we represent the ordered author list using an rdf:List
+
+ a bibo:Article ;
+ dc:title "Effect of argillaceous minerals on the growth of phosphate-mobilizing bacteria Bacillus subtilis"@en ;
+ dc:date "2006-01-01" ;
+ dc:isPartOf ;
+ bibo:volume "42" ;
+ bibo:issue "4" ;
+ bibo:pageStart "388" ;
+ bibo:pageEnd "391" ;
+ dc:creator ;
+ dc:creator ;
+ bibo:authorList ( ) .
+
+ a bibo:Journal ;
+ dc:title "Applied Biochemistry and Microbiology"@en ;
+ bibo:shortTitle "App Biochem and Biol"@en .
+
+##
+# Next, we have a newspaper article published on the internet.
+
+ a bibo:Article ;
+ dc:isPartOf ;
+ dc:date "2007-07-09" ;
+ bibo:uri "http://www.nytimes.com/2007/07/09/us/09cnd-penn.html" ;
+ dc:creator .
+
+ a bibo:Periodical ;
+ bibo:uri "http://www.nytimes.com" ;
+ dc:title "New York Times" .
+
+ a foaf:Person;
+ foaf:givenname "Anahad" ;
+ foaf:family_name "O'Connor" .
diff --git a/examples/book.ttl b/examples/book.ttl
new file mode 100644
index 0000000..bd91e1c
--- /dev/null
+++ b/examples/book.ttl
@@ -0,0 +1,8 @@
+prefix dc:
+prefix bibo:
+
+ a bibo:Book ;
+ dc:creator ;
+ dc:title "Book Title"@en ;
+ dc:date "2000" ;
+ dc:publisher .
diff --git a/examples/complex-series-proceeding-article-use-case.ttl b/examples/complex-series-proceeding-article-use-case.ttl
new file mode 100644
index 0000000..c7346c2
--- /dev/null
+++ b/examples/complex-series-proceeding-article-use-case.ttl
@@ -0,0 +1,61 @@
+prefix foaf:
+prefix dcterms:
+prefix rdf:
+prefix bibo:
+
+ a bibo:Series ;
+ dcterms:title "CEUR Workshop Proceedings" ;
+ bibo:shortTitle "CEUR workshop proc." ;
+ bibo:issn "1613-0073" ;
+ dcterms:publisher ;
+ dcterms:hasPart ;
+ dcterms:relation ;
+ bibo:status .
+
+ a bibo:Document ;
+ bibo:uri "http://sunsite.informatik.rwth-aachen.de/Publications/CEUR-WS/" .
+
+ a foaf:Person ;
+ bibo:familyName "Jeusfeld" ;
+ bibo:givenName "Manfred" .
+
+ a bibo:Proceeding ;
+ dcterms:title "SFSW '07 Scripting for the Semantic Web" ;
+ bibo:shortTitle "SFSW2007" ;
+ dcterms:date "2007-05-01" ;
+ bibo:volume "248" ;
+ dcterms:partOf ;
+ dcterms:relation ;
+ bibo:editor ,
+ ,
+ ,
+ ;
+ bibo:contributorList [ a rdf:Seq ;
+ rdf:_1 ;
+ rdf:_2 ;
+ rdf:_3 ;
+ rdf:_4 ] ;
+ dcterms:hasPart ;
+ bibo:status .
+
+ a bibo:Document ;
+ bibo:uri "http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/proceedings.pdf" .
+
+ a bibo:Article ;
+ dcterms:title "An Architecture to Discover and Query Decentralized RDF Data" ;
+ dcterms:date "2007-05-01" ;
+ dcterms:partOf ;
+ dcterms:relation ;
+ dcterms:creator ,
+ ,
+ ;
+ bibo:authorList [ a rdf:Seq ;
+ rdf:_1 ;
+ rdf:_2 ;
+ rdf:_3 ] ;
+ bibo:status ,
+ ,
+ .
+
+ a bibo:Document ;
+ bibo:uri "http://ftp.informatik.rwth-aachen.de/Publications/CEUR-WS/Vol-248/paper11.pdf" .
diff --git a/examples/conference-paper.ttl b/examples/conference-paper.ttl
new file mode 100644
index 0000000..8c801ba
--- /dev/null
+++ b/examples/conference-paper.ttl
@@ -0,0 +1,22 @@
+prefix bibo:
+prefix dc:
+prefix dc:
+prefix event:
+prefix time:
+prefix timeline:
+
+ a bibo:Article ;
+ dc:creator ;
+ dc:title "Conference Paper" ;
+ bibo:presentedAt ;
+ bibo:reproducedIn .
+
+ a bibo:Conference ;
+ bibo:organizer ;
+ event:place ;
+ event:time [ time:Interval [ timeline:beginsAtDateTime "2007-03-01" ; timeline:endsAtDateTime "2007-03-13"] ] .
+
+ a bibo:Proceedings ;
+ dc:title "Proceedings of the ABC Conference"@en ;
+ dc:date "2000" ;
+ dc:publisher .
diff --git a/examples/conference-presentation.ttl b/examples/conference-presentation.ttl
new file mode 100644
index 0000000..2b8f226
--- /dev/null
+++ b/examples/conference-presentation.ttl
@@ -0,0 +1,33 @@
+prefix bibo:
+prefix cc:
+prefix dc:
+prefix event:
+prefix foaf:
+prefix rdfs:
+prefix tl:
+prefix xsd:
+
+ a cc:Work , bibo:Slideshow ;
+ cc:license ;
+ dc:date "2008-06-18"^^xsd:dateTime ;
+ dc:hasFormat ;
+ dc:subject ;
+ dc:title "State of the Semantic Web"@en ,
+ "États des lieux du Web sémantique"@fr ;
+ bibo:authorList ( ) ;
+ bibo:presentedAt .
+
+ a foaf:Person ;
+ rdfs:seeAlso ;
+ foaf:name "Ivan Herman" .
+
+ a bibo:Conference ;
+ event:place ;
+ event:time [ a tl:Interval ;
+ tl:beginsAt "2008-06-18"^^xsd:dateTime ;
+ tl:endsAt "2008-06-20"^^xsd:dateTime ] ;
+ dc:title "19th Francophone Knowledge Engineering Days"@en ,
+ "19èmes Journées Francophones d’Ingénierie des Connaissances"@fr .
+
+ dc:format "application/vnd.oasis.opendocument.presentation" ;
+ dc:isFormatOf .
diff --git a/examples/contributors.ttl b/examples/contributors.ttl
new file mode 100644
index 0000000..eb87098
--- /dev/null
+++ b/examples/contributors.ttl
@@ -0,0 +1,19 @@
+prefix address:
+prefix foaf:
+prefix bibo:
+prefix dc:
+
+ a foaf:Person ;
+ foaf:givenname "Jane" ;
+ foaf:family_name "Doe" .
+
+ a foaf:Person .
+
+ a foaf:Person .
+
+ a foaf:Organization ;
+ foaf:name "ABC Publishers" ;
+ address:localityName "New York" .
+
+ a foaf:Organization ;
+ foaf:name "XYZ Archive, National University" .
diff --git a/examples/enhanced-example-above-zotero-example.ttl b/examples/enhanced-example-above-zotero-example.ttl
new file mode 100644
index 0000000..975b0f1
--- /dev/null
+++ b/examples/enhanced-example-above-zotero-example.ttl
@@ -0,0 +1,97 @@
+prefix z:
+prefix link:
+prefix vcard:
+prefix foaf:
+prefix prism:
+prefix dcterms:
+prefix dc:
+prefix bib:
+prefix NC:
+prefix rdf:
+prefix bibo:
+
+ a bibo:Book ;
+ dcterms:title "Spinning the Semantic Web: Bringing the World Wide Web to Its Full Potential" ;
+ bibo:shortTitle "Spinning the Semantic Web" ;
+ bibo:editionName "New Ed" ;
+ dcterms:date "2005-03-01" ;
+ bibo:isbn "026256212X" ;
+ dcterms:relation ,
+ ;
+ bibo:editor ,
+ ,
+ ,
+ ;
+ dcterms:contributor ;
+ dcterms:publisher ;
+ bibo:contributorList [ a rdf:Seq ;
+ rdf:_1 ;
+ rdf:_2 ;
+ rdf:_3 ;
+ rdf:_4 ;
+ rdf:_5 ;
+ rdf:_6 ] ;
+ dcterms:hasPart .
+
+ a bibo:Document ;
+ bibo:uri "http://www.amazon.com/dp/026256212X" .
+
+ a bibo:Document ;
+ bibo:uri "http://www.alibris.com/search/search.cfm?wtit=Spinning%20the%20Semantic%20Web" .
+
+ a foaf:Organization ;
+ foaf:name "The MIT Press" .
+
+ a foaf:Person ;
+ foaf:surname "Fensel" ;
+ foaf:givenname "Dieter" .
+
+ a foaf:Person ;
+ foaf:surname "Hendler" ;
+ foaf:givenname "James A." .
+
+ a foaf:Person ;
+ foaf:surname "Lieberman" ;
+ foaf:givenname "Henry" .
+
+ a foaf:Person ;
+ foaf:surname "Wahlster" ;
+ foaf:givenname "Wolfgang" .
+
+ a foaf:Person ;
+ foaf:surname "Berners-Lee" ;
+ foaf:givenname "Tim" .
+
+ a bibo:Part ;
+ dcterms:title "Ontologies and Schema Languages on the Web" ;
+ bibo:startPage "95" ;
+ bibo:endPage "139" ;
+ bibo:chapter "4" ;
+ dcterms:isPartOf ;
+ bibo:editor ,
+ ,
+ ,
+ ,
+ ;
+ bibo:contributorList [ a rdf:Seq ;
+ rdf:_1 ;
+ rdf:_2 ;
+ rdf:_3 ;
+ rdf:_4 ;
+ rdf:_5 ] .
+
+ a foaf:Person ;
+ foaf:surname "Klein" ;
+ foaf:givenname "Michel" .
+
+ a foaf:Person ;
+ foaf:surname "Broekstra" ;
+ foaf:givenname "Jeen" .
+
+ a foaf:Person ;
+ foaf:surname "van Hermelen" ;
+ foaf:givenname "Frank" .
+
+ a foaf:Person ;
+ foaf:surname "Horrocks" ;
+ foaf:givenname "Ian" .
diff --git a/examples/index.ttl b/examples/index.ttl
new file mode 100644
index 0000000..cd55058
--- /dev/null
+++ b/examples/index.ttl
@@ -0,0 +1,60 @@
+prefix bibo:
+prefix dc:
+
+ a bibo:Document ;
+ dc:title "Article"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Book"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "A Complex series + proceeding + article use case"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Conference Paper"@en ;
+ dc:comment "The following is a paper presented at a conference and then published in a proceedings."@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Conference Presentation"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Contributors"@en ;
+ dc:comment "We use FOAF to model agents."@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Enhanced example of the above Zotero example"@en ;
+ dc:comment "Enhanced example of the above Zotero example"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:source ;
+ dc:title "Legal Case"@en ;
+ dc:comment "This example describes both the cited decision, as well as relations to subsequent decision history."@en .
+
+ a bibo:Document ;
+ dc:title "Letter"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Manuscript"@en ;
+ dc:comment "An unpublished document held in an archive."@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Rejected article submitted to a conference"@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Statue"@en ;
+ dc:comment "This is very preliminary work done by Dan McCreary on RDF tags for state bills and statutes and not yet validated by anyone else."@en ;
+ dc:source .
+
+ a bibo:Document ;
+ dc:title "Thesis"@en ;
+ dc:source .
diff --git a/examples/legal-case.ttl b/examples/legal-case.ttl
new file mode 100644
index 0000000..a5f6020
--- /dev/null
+++ b/examples/legal-case.ttl
@@ -0,0 +1,17 @@
+prefix bibo:
+prefix dcterms:
+prefix foaf:
+
+ a bibo:LegalDecision ;
+ dcterms:issued "2006-01-01" ;
+ bibo:argued "2005-10-12" ;
+ dcterms:title "Doe v. Smith"@en ;
+ bibo:number "123223" ;
+ bibo:court [ foaf:name "Some Court" ] ;
+ bibo:affirmedBy ;
+ bibo:affirmedBy ;
+ dcterms:isPartOf .
+
+ a bibo:CourtReporter ;
+ dcterms:title "Court Reporter Title"@en ;
+ bibo:shortTitle "CRT"@en .
diff --git a/examples/letter.ttl b/examples/letter.ttl
new file mode 100644
index 0000000..1a124ee
--- /dev/null
+++ b/examples/letter.ttl
@@ -0,0 +1,9 @@
+prefix foaf:
+prefix dcterms:
+prefix rdf:
+prefix bibo:
+
+ a bibo:Letter ;
+ dcterms:date "2000-10-12" ;
+ dcterms:creator ;
+ bibo:recipient .
diff --git a/examples/manuscript.ttl b/examples/manuscript.ttl
new file mode 100644
index 0000000..43abae9
--- /dev/null
+++ b/examples/manuscript.ttl
@@ -0,0 +1,20 @@
+prefix address:
+prefix bibo:
+prefix dcterms:
+prefix foaf:
+prefix rdf:
+
+ a bibo:Manuscript ;
+ dcterms:title "Manuscript Title"@en ;
+ dcterms:isPartOf ;
+ bibo:locator "Box 12, Folder 3" ;
+ dcterms:creator .
+
+ a bibo:Collection ;
+ dcterms:title "Manuscript Collection Title"@en ;
+ bibo:owner .
+
+ a foaf:Organization ;
+ foaf:name "XYZ Archive, National University" ;
+ address:localityName "London" ;
+ foaf:based_near .
diff --git a/examples/rejected-article-submitted-conference.ttl b/examples/rejected-article-submitted-conference.ttl
new file mode 100644
index 0000000..cf1a4f0
--- /dev/null
+++ b/examples/rejected-article-submitted-conference.ttl
@@ -0,0 +1,33 @@
+prefix foaf:
+prefix dcterms:
+prefix event:
+prefix dc:
+prefix rdf:
+prefix bibo:
+
+ a bibo:Article ;
+ dcterms:title "An Architecture to Discover and Query Decentralized RDF Data" ;
+ dcterms:date "2007-05-01" ;
+ dcterms:relation ;
+ dcterms:creator ;
+ bibo:status ,
+ ,
+ ;
+ bibo:presentedAt .
+
+ a bibo:Document ;
+ bibo:uri "http://fgiasson.com/articles/swfp.pdf" .
+
+ a bibo:Note ;
+ bibo:content "I wrote this paper to try to find a solution to the growing problem of the secure distribution of private web feeds." ;
+ bibo:annotates ;
+ dcterms:creator .
+
+ a bibo:Conference ;
+ bibo:organizer ;
+ event:place ;
+ dcterms:date "2005-09-12" .
+
+ a foaf:Organization ;
+ foaf:name "University of New Brunswick" ;
+ foaf:homepage .
diff --git a/examples/statute.ttl b/examples/statute.ttl
new file mode 100644
index 0000000..14d9adb
--- /dev/null
+++ b/examples/statute.ttl
@@ -0,0 +1,4 @@
+prefix bibo:
+
+ a bibo:Statute ;
+. # ...put the code here
diff --git a/examples/thesis.ttl b/examples/thesis.ttl
new file mode 100644
index 0000000..1128787
--- /dev/null
+++ b/examples/thesis.ttl
@@ -0,0 +1,16 @@
+prefix address:
+prefix bibo:
+prefix dc:
+prefix foaf:
+prefix rdf:
+
+ a bibo:Thesis ;
+ dc:date "1998-01-01" ;
+ dc:title "Dissertation Title"@en ;
+ bibo:issuer ;
+ bibo:degree ;
+ dc:creator .
+
+ a foaf:Organization ;
+ foaf:name "National University" ;
+ address:localityName "Singapore" .