Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagexml
titleevent2.sparql
prefix audit:       <http://fedora.info/definitions/v4/audit#>
prefix premis:      <http://www.loc.gov/premis/rdf/v1#>
prefix premisEvent: <http://id.loc.gov/vocabulary/preservation/eventType/>
prefix prov:        <http://www.w3.org/ns/prov#>
prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
prefix xsd:         <http://www.w3.org/2001/XMLSchema#>

insert data {
  <http://example.org/event2> rdf:type prov:InstantaneousEvent .
  <http://example.org/event2> rdf:type premis:Event .
  <http://example.org/event2> rdf:type audit:ExternalEvent .
  <http://example.org/event2> premis:hasEventRelatedAgent "jquser"^^xsd:string .
  <http://example.org/event2> premis:hasEventRelatedAgent "rsync 2.6.9"^^xsd:string .
  <http://example.org/event2> premis:hasEventRelatedAgent "backup-repository.example.edu"^^xsd:string .
  <http://example.org/event2> premis:hasEventType premisEvent:rep .
  <http://example.org/event2> premis:hasEventRelatedObject <http://localhost:8080/fcrepo/rest/55/59/ec/05/5559ec05-6ab1-4d61-905a-a5f3da360b23> .
  <http://example.org/event2> premis:hasEventDateTime "2012-04-30T20:40:40"^^xsd:dateTime .
}

...

External audit events can be added to an LDP Container as a repository resource.  When using Verification - Internal Audit Events, the audit container will be created automatically.  Otherwise, a container for audit events can be created in the usual way:

Code Block
languagebash
curl -X POST -H "Slug: audit" http://localhost:8080/fcrepo4fcrepo/rest/

 

For each event, post the RDF for the event to the audit container:

Code Block
languagebash
curl -X POST --data-binary @audit_event.ttl -H "Content-type: text/turtle" http://localhost:8080/fcrepo4fcrepo/rest/audit/

...

Code Block
languagexml
titleaudit_event.ttl
@prefix audit:  <http://fedora.info/definitions/v4/audit#> .
@prefix premis: <http://www.loc.gov/premis/rdf/v1#> .
@prefix prov:   <http://www.w3.org/ns/prov#> .
@prefix xsd:    <http://www.w3.org/2001/XMLSchema#> .

<> a prov:InstantaneousEvent, premis:Event, audit:ExternalEvent ;
   premis:hasEventRelatedAgent "jquser"^^xsd:string,
                               "ImageMagick 6.8.8-9"^^xsd:string,
                               "thumbnail-generator.example.edu"^^xsd:string ;
   premis:hasEventType audit:derivativeCreation ;
   premis:hasEventRelatedObject <http://localhost:8080/fcrepo/rest/foo>some-existing-resource> ;
   premis:hasEventDateTime "2012-04-30T20:40:40"^^xsd:dateTime .

...