--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/components/Plan.ttl Wed Nov 16 12:14:08 2011 -0500
@@ -0,0 +1,35 @@
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@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:usedPlan
+ a owl:Class;
+ rdfs:label "usedPlan";
+ rdfs:comment "The Plan used during this ProcessExecution.";
+ rdfs:domain prov:ProcessExecution;
+ rdfs:range prov:Plan;
+ skos:historyNote [
+ a prov:Quote;
+ rdf:value
+"""I think it's reasonable to say that that Plan is a subclass of Entity,
+and hadPan should be a subproperty of used (maybe hadPlan should be
+usedPlan).""";
+ dcterms:creator <http://tw.rpi.edu/instances/JamesMcCusker>;
+ dcterms:created "2011-11-16T11:39:37-05:00"^^xsd:dateTime;
+ prov:wasQuoteof <http://lists.w3.org/Archives/Public/public-prov-wg/2011Nov/0114.html>
+ ];
+ rdfs:subPropertyOf prov:used;
+.
+
+prov:Plan
+ a owl:Class;
+ rdfs:subClassOf prov:Entity;
+ rdfs:label "Plan";
+ rdfs:comment "Plan is a new name for Recipe";
+.
--- a/ontology/components/nothing.ttl Wed Nov 16 17:10:20 2011 +0000
+++ b/ontology/components/nothing.ttl Wed Nov 16 12:14:08 2011 -0500
@@ -1,7 +1,9 @@
@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 : <#> .
--- a/ontology/components/wasQuoteOf.ttl Wed Nov 16 17:10:20 2011 +0000
+++ b/ontology/components/wasQuoteOf.ttl Wed Nov 16 12:14:08 2011 -0500
@@ -6,7 +6,11 @@
prov:wasQuoteOf
a owl:ObjectProperty;
- rdfs:seeAlso <http://www.w3.org/TR/2011/WD-prov-dm-20111018/#attribution>;
+ rdfs:label "wasQuoteOf";
+ rdfs:comment "proposed new name: wasQuotedFrom";
+ rdfs:seeAlso <http://www.w3.org/TR/2011/WD-prov-dm-20111018/#attribution>,
+ <http://www.w3.org/TR/2011/WD-prov-dm-20111018/#quotation>,
+ <http://www.w3.org/2011/prov/track/issues/151>;
rdfs:domain prov:Quote;
rdfs:range prov:Entity;
.