--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-25-extended-crime-file-example/rdf/extended-crime-file-pt1_a.ttl Wed Jun 06 13:58:05 2012 +0200
@@ -0,0 +1,31 @@
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+@prefix sioc: <http://rdfs.org/sioc/ns#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix ex: <http://example.org#> .
+
+ex:bundlePost1 {
+
+ ex:bundlePost1 a prov:Bundle .
+
+ ex:monica
+ a prov:Person, prov:Agent, foaf:Person;
+ foaf:givenName "Monica"^^xsd:string;
+ foaf:mbox <mailto:monica@example.org>
+ .
+
+ ## Rephrasing of the post in a new resource for a different audience
+
+ ex:post9822
+ a prov:Entity, sioc:Post;
+ prov:atLocation ex:more-crime-happens-in-cities-for-dummies; ## PERMALINK to the (latest revision of the) post
+ ex:snapshotContent ex:postContent2; ## Snapshot with the content of this version
+ prov:alternateOf ex:post9821v2; ## This post is an alternate of the second version modified by Dereck.
+ prov:specializationOf ex:more-crime-happens-in-cities; ## This post is an specialization of the post initially created by Dereck.
+ prov:tracedTo ex:aggregatedByRegions; ## If the file hadn't existed, Monica would have not written the post.
+ ## However the file is not what Monica used as primary source for writting the new post,
+ ## so we can't consider the post to have "been derived from" it.
+ sioc:title "More crime happens in cities (for dummies)"^^xsd:string;
+ prov:wasAttributedTo ex:monica;
+ .
+}