Skip to content

Instantly share code, notes, and snippets.

@stain
Created March 28, 2013 11:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stain/5262532 to your computer and use it in GitHub Desktop.
Save stain/5262532 to your computer and use it in GitHub Desktop.
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix prv: <http://purl.org/net/provenance/core#> .
@prefix prvTypes: <http://purl.org/net/provenance/types#> .
@prefix http: <http://www.w3.org/2006/http#> .
<http://example.com/data.csv> a prv:DataItem, prov:Entity ;
pav:retrievedFrom <http://example.org/originalData> ;
prv:retrievedBy [ a prvTypes:HTTPBasedDataAccess ;
prv:accessedResource <http://example.org/originalData> ;
prvTypes:exchangedHTTPMessage [ a http:Request ;
http:httpVersion "1.1" ;
http:methodName "GET" ;
http:requestURI "http://example.org/originalData" ;
http:headers ( [ a http:MessageHeader ;
http:fieldName "Accept" ;
http:fieldValue "text/csv" ] )
]
] .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment