provenance container cannot have an asserter.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/components/ProvenanceContainer.ttl Sun Oct 02 19:19:59 2011 -0400
@@ -0,0 +1,15 @@
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix prov: <http://dvcs.w3.org/hg/prov/file/tip/ontology/ProvenanceOntology.owl#> .
+@prefix sd: <http://www.w3.org/ns/sparql-service-description#> .
+
+prov:ProvenanceContainer
+ a owl:Class;
+ rdfs:seeAlso <http://dvcs.w3.org/hg/prov/raw-file/default/model/ProvenanceModel.html#ProvenanceContainer>;
+ rdfs:comment "ProvenanceContainer cannot be asserted by an Agent; this is left to Account."
+ rdfs:subClassOf [
+ a owl:Restriction;
+ owl:onProperty prov:hasAsserter;
+ owl:maxCardinality 0;
+ ];
+.