Re: OWL datatyping and example

> 1) is the mention of the rdf:datatype compulsory?

Yes.

> 2) is string the default value if not mentionned?

No.  It becomes a simple literal.

> 3) how to express a list of value (this comes from the test case for 
> the XML Presentation syntax):
> 
> <owl:oneOf rdf:parseType="Collection">
> 1 2 3 4
> </owl:oneOf>
> 
> <owl:oneOf rdf:parseType="Collection">
> red green blue
> </owl:oneOf>

You can use rdf:parseType="Collection" for object properties
only, e.g.

<owl:oneOf rdf:parseType="Collection">
  <owl:Thing rdf:about="#red"/>
  <owl:Thing rdf:about="#green"/>
  <owl:Thing rdf:about="#blue"/>
</owl:oneOf>

	Mike

Received on Friday, 10 January 2003 04:05:02 UTC