Re: Issue rdfms-abouteach

Hi Jeremy,

An example showing the need for schema processing to do aboutEach properly.

1: <?xml version="1.0"?>
2: <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
3:            xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
4:             xmlns:dc="http://purl.org/dc/elements/1.1/"
5:            xmlns="">
6:   <rdf:Property rdf:ID="foo">
7:      <rdfs:subPropertyOf 
rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#_1"/>
8:   </rdf:Property>
9:
10:    <rdf:Bag rdf:ID="bag">
11:       <foo rdf:resource="bar"/>
12:        <rdf:_2 rdf:resource="#2"/>
13:     </rdf:Bag>
14:
15:     <rdf:Description rdf:aboutEach="#bag">
16:       <rdf:value>value</rdf:value>
17:      </rdf:Description>
18: </rdf:RDF>

regards
Brian

Received on Friday, 16 November 2001 08:23:17 UTC