Skip to content

Commit

Permalink
tweaking prov-links default namespace, abbreviating full URIs to prov…
Browse files Browse the repository at this point in the history
…:, expanding : to prov-links#>
  • Loading branch information
timrdf committed Jun 29, 2015
1 parent b1e1c30 commit 8b0b183
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 21 deletions.
4 changes: 1 addition & 3 deletions namespace/prov-links.owl
Expand Up @@ -3,15 +3,13 @@
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns="http://www.w3.org/ns/prov-links#">
xmlns="http://www.w3.org/ns/prov#">
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
<owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
<owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
<owl:Ontology rdf:about="http://www.w3.org/ns/prov-links#"/>
<owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#asInBundle">
<rdfs:comment xml:lang="en">prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.

Expand Down
35 changes: 17 additions & 18 deletions namespace/prov-links.ttl
@@ -1,4 +1,5 @@
@prefix : <http://www.w3.org/ns/prov-links#> .
@prefix : <http://www.w3.org/ns/prov#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .

Expand All @@ -14,37 +15,35 @@ owl:Thing a owl:Class .

owl:versionInfo a owl:AnnotationProperty .

<http://www.w3.org/ns/prov#asInBundle> a owl:ObjectProperty ;
prov:asInBundle a owl:ObjectProperty ;
rdfs:label "asInBundle" ;
rdfs:comment """prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.
When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described."""@en ;
rdfs:domain <http://www.w3.org/ns/prov#Entity> ;
rdfs:isDefinedBy : ;
rdfs:range <http://www.w3.org/ns/prov#Bundle> ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-links#> ;
rdfs:range prov:Bundle ;
:inverse "contextOf" ;
:sharesDefinitionWith <http://www.w3.org/ns/prov#mentionOf> .
:sharesDefinitionWith prov:mentionOf .

<http://www.w3.org/ns/prov#mentionOf> a owl:ObjectProperty ;
prov:mentionOf a owl:ObjectProperty ;
rdfs:label "mentionOf" ;
rdfs:comment """prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.
prov:asInBundle is used to cite the Bundle in which the generalization was mentioned."""@en ;
rdfs:domain <http://www.w3.org/ns/prov#Entity> ;
rdfs:isDefinedBy : ;
rdfs:range <http://www.w3.org/ns/prov#Entity> ;
rdfs:subPropertyOf <http://www.w3.org/ns/prov#specializationOf> ;
rdfs:domain prov:Entity ;
rdfs:isDefinedBy <http://www.w3.org/ns/prov-links#> ;
rdfs:range prov:Entity ;
rdfs:subPropertyOf prov:specializationOf ;
:inverse "hadMention" .

: a owl:Ontology ;
<http://www.w3.org/ns/prov-links#> a owl:Ontology ;
rdfs:label "W3C PROV Linking Across Provenance Bundles Ontology (PROV-LINKS)"@en ;
rdfs:comment """This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/
). All feedback is welcome."""@en ;
rdfs:seeAlso <http://www.w3.org/TR/prov-links/>,
<http://www.w3.org/ns/prov> ;
owl:imports <http://www.w3.org/ns/prov-o#> ;
rdfs:seeAlso <http://www.w3.org/TR/prov-links/>,
<http://www.w3.org/ns/prov> ;
owl:imports <http://www.w3.org/ns/prov-o#> ;
owl:versionIRI <http://www.w3.org/ns/prov-links-20130430> ;
owl:versionInfo "Working Group Note version 2013-04-30"@en ;
:specializationOf <http://www.w3.org/ns/prov-links> .


prov:specializationOf <http://www.w3.org/ns/prov-links> .

0 comments on commit 8b0b183

Please sign in to comment.