cite typo + change log corrected
authorGuus Schreiber <guus.schreiber@vu.nl>
Tue, 07 Jan 2014 00:55:48 +0100
changeset 1762 eba20fcbc3f4
parent 1761 58a2ec45049d
child 1763 882ed9f901a2
cite typo + change log corrected
rdf-schema/index.html
--- a/rdf-schema/index.html	Mon Jan 06 22:41:37 2014 +0100
+++ b/rdf-schema/index.html	Tue Jan 07 00:55:48 2014 +0100
@@ -115,11 +115,11 @@
       <p>This document is an edited version of the 2004 RDF
         Schema Recommendation. The purpose of this revision is to make this
         document available as part of the RDF 1.1 document set. Changes are
-        limited to revised references, terminology updates, and adaptations to
+        limited to errata, revised references, terminology updates, and adaptations to
         the introduction. The title of the document was changed from "RDF
         Vocabulary Description Language 1.0: RDF Schema" to "RDF Schema 1.1".
         The technical content of the document is unchanged. Details of the changes
-        are listed in the <a href="#PER-changes">Changes</a> section.
+        are listed in the <a href="#PER-changes">Changes</a> section.</p>
       <p>
       The <abbr title="World Wide Web Consortium">W3C</abbr>
       Membership and other interested parties are invited to review
@@ -1158,7 +1158,6 @@
           <li>Removed discussion about distinction between plain and typed
             literals, as this distinction is absent in RDF 1.1 and has no
             technical bearing on RDF Schema.</li>
-          <li>Fixed incorrect pointer to RDF Primer example 16 to example 21.</li>
           <li>Removed the introductory paragraph of Sec. <a href="#ch_reificationvocab">"Reification
               Vocabulary"</a>, as this discussion is not related to the
             technical content and is irrelevant and confusing now. </li>
@@ -1230,145 +1229,6 @@
         </ul>
       </section>
     </section>
-    <!--
-<section class="appendix informative" id="ch_appendix_rdfs">
-<h2>RDF Schema as RDF/XML</h2>
-<p class="issue">
-Update of the RDFS namespace document required!?</p>
-<p> 
-An RDFS description of the <a href="http://www.w3.org/TR/rdf11-mt/#rdf-interpretations">RDF vocabulary</a> and <a href="http://www.w3.org/TR/rdf11-mt/#rdfs-interpretations">RDFS vocabulary</a> is given here in RDF/XML syntax. 
-It includes statements describing RDF resources originally introduced bythe 1999 RDF Model and Syntax specification [[RDFMS]], as well as definitions for
-resources introduced in the RDF Schema vocabulary.</p>
-<p>This material is also available as <a href="rdfs-namespace">a separate
-RDF/XML document</a>. It does not necessarily match the contentpublished at the <a
-href="http://www.w3.org/1999/02/22-rdf-syntax-ns#">RDF namespaceURI</a> or the <a href="http://www.w3.org/2000/01/rdf-schema#">RDFS
-namespace URI</a>, which may evolve over time.</p>
-<table cellpadding="5" border="1" width="95%" summary="RDF Schema in RDF">
-  <tbody>    <tr>
-      <td>        <pre>
-&lt;rdf:RDF  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
-  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"  xmlns:owl="http://www.w3.org/2002/07/owl#"&gt;
-&lt;owl:Ontology rdf:about="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;Resource&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;The class resource, everything.&lt;/rdfs:comment&gt;&lt;/rdfs:Class&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#type"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;  &lt;rdfs:label&gt;type&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;The subject is an instance of a class.&lt;/rdfs:comment&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Class"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;Class&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;The class of classes.&lt;/rdfs:comment&gt;  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdfs:Class&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#subClassOf"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;subClassOf&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The subject is a subclass of a class.&lt;/rdfs:comment&gt;
-  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;subPropertyOf&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The subject is a subproperty of a property.&lt;/rdfs:comment&gt;
-  &lt;rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/&gt;  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;Property&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of RDF properties.&lt;/rdfs:comment&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;&lt;/rdfs:Class&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;comment&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;A description of the subject resource.&lt;/rdfs:comment&gt;  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/&gt;&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#label"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;label&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;A human-readable name for the subject.&lt;/rdfs:comment&gt;  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/&gt;&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#domain"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;domain&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;A domain of the subject property.&lt;/rdfs:comment&gt; &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/&gt;&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#range"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;range&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;A range of the subject property.&lt;/rdfs:comment&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/&gt;&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:label&gt;seeAlso&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;Further information about the subject resource.&lt;/rdfs:comment&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-  &lt;rdfs:domain   rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;  &lt;rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/&gt;
-  &lt;rdfs:label&gt;isDefinedBy&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The defininition of the subject resource.&lt;/rdfs:comment&gt;
-  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;Literal&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of literal values, eg. textual strings and integers.&lt;/rdfs:comment&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;&lt;/rdfs:Class&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;  &lt;rdfs:label&gt;Statement&lt;/rdfs:label&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;  &lt;rdfs:comment&gt;The class of RDF statements.&lt;/rdfs:comment&gt;
-&lt;/rdfs:Class&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#subject"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;subject&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The subject of the subject RDF statement.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#predicate"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;predicate&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The predicate of the subject RDF statement.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#object"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;object&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The object of the subject RDF statement.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Statement"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Container"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;Container&lt;/rdfs:label&gt;  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-  &lt;rdfs:comment&gt;The class of RDF containers.&lt;/rdfs:comment&gt;&lt;/rdfs:Class&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Bag"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;  &lt;rdfs:label&gt;Bag&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;The class of unordered containers.&lt;/rdfs:comment&gt;  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/&gt;
-&lt;/rdfs:Class&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Seq"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;Seq&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of ordered containers.&lt;/rdfs:comment&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/&gt;&lt;/rdfs:Class&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#Alt"&gt;
-  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;  &lt;rdfs:label&gt;Alt&lt;/rdfs:label&gt;
-  &lt;rdfs:comment&gt;The class of containers of alternatives.&lt;/rdfs:comment&gt;  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Container"/&gt;
-&lt;/rdfs:Class&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#ContainerMembershipProperty"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;ContainerMembershipProperty&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of container membership properties, rdf:_1, rdf:_2, ...,
-                    all of which are sub-properties of 'member'.&lt;/rdfs:comment&gt;  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/&gt;
-&lt;/rdfs:Class&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/2000/01/rdf-schema#member"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;member&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;A member of the subject resource.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#value"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;value&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;Idiomatic property used for structured values.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;List&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of RDF Lists.&lt;/rdfs:comment&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;&lt;/rdfs:Class&gt;
-&lt;rdf:List rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;nil&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The empty list, with no items in it. If the rest of a list is nil then the list has no more items in it.&lt;/rdfs:comment&gt;
-&lt;/rdf:List&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#first"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;first&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The first item in the subject RDF list.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Resource"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdf:Property rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#rest"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;rest&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The rest of the subject RDF list after the first item.&lt;/rdfs:comment&gt;
-  &lt;rdfs:domain rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/&gt;  &lt;rdfs:range rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#List"/&gt;
-&lt;/rdf:Property&gt;
-&lt;rdfs:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Datatype"&gt;  &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/2000/01/rdf-schema#"/&gt;
-  &lt;rdfs:label&gt;Datatype&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of RDF datatypes.&lt;/rdfs:comment&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/&gt;&lt;/rdfs:Class&gt;
-	&lt;rdfs:Datatype rdf:about="http://www.w3.org/1999/02/22-rdf-syntax-ns#XMLLiteral"&gt;
-  &lt;rdfs:subClassOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/&gt;   &lt;rdfs:isDefinedBy rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/&gt;
-  &lt;rdfs:label&gt;XMLLiteral&lt;/rdfs:label&gt;  &lt;rdfs:comment&gt;The class of XML literal values.&lt;/rdfs:comment&gt;
-&lt;/rdfs:Datatype&gt;
-&lt;rdf:Description rdf:about="http://www.w3.org/2000/01/rdf-schema#"&gt;  &lt;rdfs:seeAlso rdf:resource="http://www.w3.org/2000/01/rdf-schema-more"/&gt;
-&lt;/rdf:Description&gt;
-&lt;/rdf:RDF&gt;
-        </pre>      </td>
-    </tr>  </tbody>
-</table><hr />
-</section>
--->
+
   </body>
 </html>