Re: URI groups

On Thu Dec  6 15:51:20 2007 Andrea Perego said:

> 
> Hi, Stasinos.
> 
> I need some (spare) time to prepare my reply. Anyway, for the moment, I
> have a question.
> 
> > [snip]
> > 
> >   <owl:Class rdf:about="#FOSIchildSafe">
> >     <rdfs:subClassOf rdf:ID="CSassertion" rdf:resource="#ChildSafe"/>
> >   </owl:Class>
> > 
> >   <rdf:Statement rdf:about="#CSassertion">
> >     <foaf:maker rdf:resource="http://www.example.org/foaf.rdf#me"/>
> >   </rdf:Statement>
> > 
> >   <rdf:Statement rdf:about="#CSassertion">
> >     <wdr:includeHost "example.org"^^xsd:string/>
> >   </rdf:Statement>
> 
> Why the rdf:Statement with wdr:includeHost refers to the one concerning
> the rdfs:subclassOf linking the scope to its description? Which is the
> semantics of this?

Good point; the statement is not referring to the subsumption, but to
FOSIchildSafe.

<owl:Class rdf:ID="FOSIchildSafe">
  <rdfs:subClassOf wdr:ChildSafe/>
</owl:Class>

<rdf:Statement rdf:about="#FOSIchildSafe">
  <wdr:includeHost "example.org"^^xsd:string/>
</rdf:Statement>


Or s'thing like declaring an RDF meta-property that has owl:Class as
it's domain:

<rdf:Property rdf:ID="includesHost">
  <rdfs:domain owl:Class"/>
  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
</rdf:Property>

<owl:Class rdf:ID="FOSIchildSafe">
  <rdfs:subClassOf wdr:ChildSafe/>
  <wdr:includeHost>example.org^^xsd:string</includesHost>
</owl:Class>

s

Received on Thursday, 6 December 2007 16:57:40 UTC