--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/paq.owl Tue Jun 05 08:49:04 2012 -0400
@@ -0,0 +1,33 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rdf:RDF xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:prov="http://www.w3.org/ns/prov#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#ProvenanceService">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#ProvenanceService">
+ <rdfs:comment>Class for a service described by a provenance service description</rdfs:comment>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasAnchor">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasAnchor">
+ <rdfs:comment>Indicates anchor URI for a potentially dynamic resource instance</rdfs:comment>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasProvenance">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasProvenance">
+ <rdfs:comment>Relates a resource to its provenance</rdfs:comment>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasProvenanceService">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#hasProvenanceService">
+ <rdfs:comment>Relates a resource to a provenance service</rdfs:comment>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#provenanceUriTemplate">
+ <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+ </rdf:Description>
+ <rdf:Description rdf:about="http://www.w3.org/ns/prov#provenanceUriTemplate">
+ <rdfs:comment>Relates a provenance service to a URI template string for constructing provenance-URIs</rdfs:comment>
+ </rdf:Description>
+</rdf:RDF>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/paq.ttl Tue Jun 05 08:49:04 2012 -0400
@@ -0,0 +1,30 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix prov: <http://www.w3.org/ns/prov#> .
+
+prov:ProvenanceService
+ a owl:Class;
+ rdfs:comment "Class for a service described by a provenance service description";
+.
+
+prov:hasAnchor
+ a owl:ObjectProperty;
+ rdfs:comment "Indicates anchor URI for a potentially dynamic resource instance";
+.
+
+prov:hasProvenance
+ a owl:ObjectProperty;
+ rdfs:comment "Relates a resource to its provenance";
+.
+
+prov:hasProvenanceService
+ a owl:ObjectProperty;
+ rdfs:comment "Relates a resource to a provenance service";
+.
+
+prov:provenanceUriTemplate
+ a owl:DatatypeProperty;
+ rdfs:comment "Relates a provenance service to a URI template string for constructing provenance-URIs";
+.