Split of the example 1 in section 3.2 to make it simpler
authordgarijo
Wed, 06 Jun 2012 13:58:05 +0200
changeset 3191 cb9c89e3b92d
parent 3190 8526c8e4d8bc
child 3192 ecae194a8131
Split of the example 1 in section 3.2 to make it simpler
examples/eg-25-extended-crime-file-example/rdf/extended-crime-file-pt1_a.ttl
--- /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;
+   .
+}