RE: alt container

> <rdf:RDF
>   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
>   xmlns:e="http://example.org/onto/person#">
>   <rdf:Description rdf:about="e:John">
>     <e:lies>
> <rdf:alt rdf:ID="degrees">
> <rdf:li>often</rdf:li>
> <rdf:li>sometimes </rdf:li>
> <rdf:li>rarely </rdf:li>
> </rdf:alt>
>     </e:lies>
>   </rdf:Description>
> </rdf:RDF>

This is obviously untrue. rdf:Alt (the A should be capitalised) gives a list
of alternatives of which any can be used. Generally you'd either not make
the decision, but rather pass the complete list of alternatives on to the
next layer of processing, or else pick the first one that is usable (a
criteria that obviously depends on the application). As such "often" and
"rarely" generally would not belong in an Alt together.

Received on Monday, 4 November 2002 05:49:12 UTC