Schema typos?

The last element of the document at http://www.w3.org/2000/01/rdf-schema
reads:


<rdf:Description about="http://www.w3.org/2000/01/rdf-schema#">
  <rdfs:seeAlso resource="http://www.w3.org/2000/01/rdf-schema-more"/>
</rdf:Description>

Should that be

<rdf:Description about="http://www.w3.org/2000/01/rdf-schema#">
  <rdfs:seeAlso rdf:resource="http://www.w3.org/2000/01/rdf-schema-more"/>
                ^^^^
</rdf:Description>

The element defining isDefinedBy reads:

<rdf:Property ID="isDefinedBy">
  <rdf:type resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#Property"/>
  <rdfs:subPropertyOf rdf:resource="#seeAlso"/>
  <rdfs:label xml:lang="en">isDefinedBy</rdfs:label>
  <rdfs:label xml:lang="fr">esD&#233;finiPar</rdfs:label>
  <rdfs:comment>Indicates a resource containing and defining the subject
resource.</rdfs:comment>
  <rdfs:range rdf:resource="#Resource"/>
  <rdfs:domain rdf:resource="#Resource"/>
</rdf:Property>

Is there a reason for the redundant rdf:type property on
the second line.  The elements defining ConstraintResource,
predicate, Literal and label have similar redundant rdf:type
properties.

Fooled me when I was checking parser output by counting the number
of statements there should be.

Brian McBride
HPLabs

Received on Sunday, 27 August 2000 08:36:01 UTC