named meta graph example - before retrieval and account examples.
authorTim L <lebot@rpi.edu>
Thu, 06 Oct 2011 10:20:09 -0400
changeset 561 38abb2108f78
parent 560 584e4c8e5807
child 562 839677f2ded0
named meta graph example - before retrieval and account examples.
ontology/component-aggregations/prov.ttl
ontology/components/NamedGraph/named-graph-topics.ttl
--- a/ontology/component-aggregations/prov.ttl	Thu Oct 06 15:14:17 2011 +0100
+++ b/ontology/component-aggregations/prov.ttl	Thu Oct 06 10:20:09 2011 -0400
@@ -14,5 +14,5 @@
 
 <> 
    a owl:Ontology;
-   owl:imports <../components/wasDerivedFrom.ttl>;
+   owl:imports <http://dvcs.w3.org/hg/prov/raw-file/3d6ec214ad01/ontology/components/wasDerivedFrom.ttl>;
 .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/ontology/components/NamedGraph/named-graph-topics.ttl	Thu Oct 06 10:20:09 2011 -0400
@@ -0,0 +1,32 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
+@prefix con:     <http://www.w3.org/2000/10/swap/pim/contact#> .
+@prefix sd:      <http://www.w3.org/ns/sparql-service-description#> .
+@prefix card:    <http://www.w3.org/People/Berners-Lee/card#> .
+@prefix prov:    <http://dvcs.w3.org/hg/prov/raw-file/tip/ontology/ProvenanceOntology.owl#> .
+@prefix :        <#> .
+
+:about_tbl_card {
+   :tbl_card
+       a sd:NamedGraph;
+       sd:name          <http://www.w3.org/People/Berners-Lee/card>; 
+       prov:hadLocation <>;
+       dcterms:subject  card:i;
+       rdfs:comment "The named graph <http://www.w3.org/People/Berners-Lee/card> in this file is about Tim Berners-Lee.";
+   .
+   :about_tbl_card
+       a sd:NamedGraph;
+       sd:name          :about_tbl_card; 
+       prov:hadLocation <>;
+       dcterms:subject  :tbl-card, 
+                        :about_tbl_card;
+       rdfs:comment "The named graph #about_tbl_card in this file is about two named graphs.";
+   .
+}
+
+<http://www.w3.org/People/Berners-Lee/card> { 
+   card:i rdfs:label "Tim Berners-Lee";
+        con:assistant card:amy .
+}