Created
May 23, 2014 17:54
-
-
Save bduggan/0182f8bc790de06b5151 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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 : <http://www.example.org#> . | |
@base <http://www.example.com/monica-bundle.ttl> . | |
<> | |
a prov:Bundle, prov:Entity; | |
prov:wasAttributedTo :postEditor; | |
prov:wasDerivedFrom <http://www.example.com/derek-bundle.ttl> . | |
prov:generatedAtTime "2011-07-16T03:03:03Z"^^xsd:dateTime; | |
. | |
:monica | |
a prov:Person, prov:Agent; | |
foaf:givenName "Monica"; | |
foaf:mbox <mailto:[email protected]>; | |
. | |
## Revised post for a different audience is a new resource. | |
:post9822 | |
a sioc:Post, prov:Entity; | |
sioc:title "More crime happens in cities (for dummies)"; | |
prov:wasAttributedTo :monica, | |
:postEditor; | |
prov:alternateOf :more-crime-happens-in-cities; ## This post is an alternate of Derek's blog. | |
prov:value "A quick overview of Derek's..."; ## Snapshot with the content of this version | |
prov:wasRevisionOf :post9821v2; ## Monica rewrote Derek's version 2 to create hers. | |
. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment