legacy hadOriginalSource and Source->PrimarySource http://www.w3.org/2011/prov/track/issues/455
authorTim L <lebot@rpi.edu>
Tue, 14 Aug 2012 13:07:27 -0400
changeset 4334 abb4ec69d1ce
parent 4333 6d38f0b28b22
child 4335 3566827524f5
legacy hadOriginalSource and Source->PrimarySource http://www.w3.org/2011/prov/track/issues/455
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_PrimarySource.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Source.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_entity.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedPrimarySource.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_PrimarySource.ttl	Tue Aug 14 13:07:27 2012 -0400
@@ -0,0 +1,19 @@
+@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#> .
+@prefix :     <http://example.com/> .
+
+:myPost 
+   a prov:Entity;
+   prov:hadPrimarySource :donQuixote;
+   prov:qualifiedPrimarySource [
+      a prov:PrimarySource;
+      prov:entity :donQuixote;
+      :confidenceValue "6"^^xsd:integer;
+      rdfs:comment """Not sure if Don Quixote was the original source, 
+                      so asserting a confidence value of 6 out of 10.""";
+   ];
+.
+
+:donQuixote a prov:Entity.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Source.ttl	Tue Aug 14 13:04:14 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,19 +0,0 @@
-@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#> .
-@prefix :     <http://example.com/> .
-
-:myPost 
-   a prov:Entity;
-   prov:hadPrimarySource :donQuixote;
-   prov:qualifiedSource [
-      a prov:Source;
-      prov:entity :donQuixote;
-      :confidenceValue "6"^^xsd:integer;
-      rdfs:comment """Not sure if Don Quixote was the original source, 
-                      so asserting a confidence value of 6 out of 10.""";
-   ];
-.
-
-:donQuixote a prov:Entity.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_entity.ttl	Tue Aug 14 13:04:14 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_entity.ttl	Tue Aug 14 13:07:27 2012 -0400
@@ -7,8 +7,8 @@
 :myPost 
    a prov:Entity;
    prov:hadPrimarySource :donQuixote;
-   prov:qualifiedSource [
-      a prov:Source;
+   prov:qualifiedPrimarySource [
+      a prov:PrimarySource;
       prov:entity :donQuixote;
       # Other attributes of the relationship
    ];
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedPrimarySource.ttl	Tue Aug 14 13:07:27 2012 -0400
@@ -0,0 +1,24 @@
+@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 dcterms: <http://purl.org/dc/terms/> .
+@prefix prov:    <http://www.w3.org/ns/prov#> .
+@prefix ex:      <http://example.com/vocab#> .
+@prefix :        <http://example.com/> .
+
+:temperatureDisplay
+   a prov:Entity;
+   prov:hadPrimarySource :sensorReading20120510;
+   prov:qualifiedPrimarySource [
+      a prov:PrimarySource;
+      prov:entity        :sensorReading20120510;
+      ex:precisionLoss true;
+      rdfs:comment """The displayed temperature does not show the full precision 
+                      available in the reading.""";
+   ];
+.
+
+:sensorReading20120510 
+   a prov:Entity;
+   prov:wasGeneratedBy :temperatureSensor;
+.
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedSource.ttl	Tue Aug 14 13:04:14 2012 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-@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 dcterms: <http://purl.org/dc/terms/> .
-@prefix prov:    <http://www.w3.org/ns/prov#> .
-@prefix :        <http://example.com/> .
-
-:temperatureDisplay
-   a prov:Entity;
-   prov:hadPrimarySource :sensorReading20120510;
-   prov:qualifiedSource [
-      a prov:Source;
-      prov:entity        :sensorReading20120510;
-      ex:precisionLoss true;
-      rdfs:comment """The displayed temperature does not show the full precision 
-                      available in the reading.""";
-   ];
-.
-
-:sensorReading20120510 
-   a prov:Entity;
-   prov:wasGeneratedBy :temperatureSensor;
-.