hasAnchor and hasProvenance from PAQ
authorTim L <lebot@rpi.edu>
Fri, 02 Dec 2011 16:57:54 -0500
changeset 1162 042a0ed56b4d
parent 1161 520c1e396dc3
child 1163 ac00854c0c3d
hasAnchor and hasProvenance from PAQ
ontology/components/hasAnchor.ttl
ontology/components/hasProvenance.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/components/hasAnchor.ttl	Fri Dec 02 16:57:54 2011 -0500
@@ -0,0 +1,16 @@
+@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 time:    <http://www.w3.org/2006/time#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix skos:    <http://www.w3.org/2008/05/skos#> .
+@prefix prov:    <http://www.w3.org/ns/prov-o/> .
+@prefix :        <#> .
+
+prov:hasAnchor
+   a owl:ObjectProperty;
+   rdfs:comment "Allows the RDF content to specify one or more entity-URIs of the RDF document for the purpose of provenance information (similar to the use of the 'anchor' link relation in HTML).";
+   rdfs:domain prov:ProvenanceInformation;
+   rdfs:range  prov:Entity;
+.
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/components/hasProvenance.ttl	Fri Dec 02 16:57:54 2011 -0500
@@ -0,0 +1,17 @@
+@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 time:    <http://www.w3.org/2006/time#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix skos:    <http://www.w3.org/2008/05/skos#> .
+@prefix prov:    <http://www.w3.org/ns/prov-o/> .
+@prefix :        <#> .
+
+prov:hasProvenance
+   a owl:ObjectProperty;
+   rdfs:seeAlso <http://dvcs.w3.org/hg/prov/raw-file/default/paq/provenance-access.html#resource-presented-as-rdf>;
+   rdfs:comment "A relation between two resources, where the object of the property is a resource that provides provenance information about the subject resource";
+   rdfs:domain rdfs:Resource;
+   rdfs:range  prov:ProvenanceInformation;
+.