Skip to content

Commit

Permalink
Issues 486 & 507
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas Car committed Oct 31, 2018
1 parent 3b53c23 commit be299e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions profilesont/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -323,24 +323,24 @@ <h4>profileOf</h4>
<tr><td class="prop">Label:</td><td>profile of</td></tr>
<tr><td class="prop">Definition:</td><td>The immediate parent (base specification) an Profile describes conformance to</td></tr>
<tr><td class="prop">Domain:</td><td><a href="#Class:Profile">prof:Profile</a></td></tr>
<tr><td class="prop">Range:</td><td><a href="#Class:Profile">prof:Profile</a></td></tr>
<tr><td class="prop">Range:</td><td><a href="http://www.dublincore.org/documents/dcmi-terms/#terms-Standard">dct:Standard</a></td></tr>
<tr><td class="prop">Inverse of:</td><td><a href="#Property:hasProfile">prof:hasProfile</a></td></tr>
<tr><td class="prop">Usage note:</td><td>The semantics of the rdfs:Range means that any resource treated as a base specification can be regarded as a Profile (i.e. may be any specification with an empty set of additional constraints)</td></tr>
</tbody>
</table>
</section>
<section id="Property:profileOfTransitive" class="property">
<h4>profileOfTransitive</h4>
<section id="Property:transitiveProfileOf" class="property">
<h4>transitiveProfileOf</h4>
<table class="definition">
<thead>
<tr><th>RDF Property:</th><th><a href="#Property:profileOfTransitive">prof:profileOfTransitive</a></th></tr>
<tr><th>RDF Property:</th><th><a href="#Property:transitiveProfileOf">prof:transitiveProfileOf</a></th></tr>
</thead>
<tbody>
<tr><td class="prop">OWL type:</td><td><a href="https://www.w3.org/TR/owl2-rdf-based-semantics/#table-axiomatic-properties">owl:ObjectProperty</a></td></tr>
<tr><td class="prop">Label:</td><td>profile of transitive</td></tr>
<tr><td class="prop">Definition:</td><td>A base specification an Profile conforms to</td></tr>
<tr><td class="prop">Label:</td><td>transitive profile of</td></tr>
<tr><td class="prop">Definition:</td><td>A base specification that a Profile conforms to transitivly (through an intermediary)</td></tr>
<tr><td class="prop">Domain:</td><td><a href="#Class:Profile">prof:Profile</a></td></tr>
<tr><td class="prop">Range:</td><td><a href="#Class:Profile">prof:Profile</a></td></tr>
<tr><td class="prop">Range:</td><td><a href="http://www.dublincore.org/documents/dcmi-terms/#terms-Standard">dct:Standard</a></td></tr>
<tr><td class="prop">Usage note:</td><td>A means to list all the transitive hierarchy of base specifications that this Profile implies conformance to</td></tr>
</tbody>
</table>
Expand Down
8 changes: 4 additions & 4 deletions profilesont/profilesont.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -76,16 +76,16 @@ dct:format rdf:type owl:AnnotationProperty ;
### http://www.w3.org/ns/prof/profileOf
:profileOf rdf:type owl:ObjectProperty ;
rdfs:domain :Profile ;
rdfs:range :Profile ;
rdfs:range dct:Standard ;
skos:scopeNote "The semantics of the rdfs:Range means that any resource treated as a base specification can be regarded as a Profile (i.e. may be any specification with an empty set of additional constraints)."@en ;
skos:definition "The immediate parent (base specification) an Profile describes conformance to."@en ;
rdfs:label "profile of" .


### http://www.w3.org/ns/prof/profileOfTransitive
:profileOfTransitive rdf:type owl:ObjectProperty ;
### http://www.w3.org/ns/prof/transitiveProfileOf
:transitiveProfileOf rdf:type owl:ObjectProperty ;
rdfs:domain :Profile ;
rdfs:range :Profile ;
rdfs:range dct:Standard ;
skos:scopeNote "A means to list all the transitive hierarchy of base specifications that this Profile implies conformance to."@en ;
skos:definition "A base specification an Profile conforms to."@en ;
rdfs:label "transitive profile of" .
Expand Down

0 comments on commit be299e4

Please sign in to comment.