about Appendix E: RDF Schema (informative)

I think the RDF schema in http://www.w3.org/TR/2001/WD-xml-infoset-20010202  is not right,
since the children property has different components in different information items. and that's why you do not write the last part in http://www.w3.org/TR/2001/WD-xml-infoset-20010316, 

how about this representation

<rdfs:Class ID='Document' rdfs:subClassOf='#InfoItem'/>
<rdfs:Class ID='Element' rdfs:subClassOf='#InfoItem'/>

<rdfs:Property ID='documentChildrenProperty'>
<rdfs:domain resource='#Document'/>
<rdfs:range resource='#Element'/>
<rdfs:range resource='#Comment'/>
<rdfs:range resource='#ProcessingInstruction'/>
<rdfs:range resource='#DocumentTypeDeclaration'/>
<rdfs:subClassOf resource= rdfs:ContainerMembershipProperty/>
</rdfs:Property>


<rdfs:Property ID='elementChildrenProperty'>
<rdfs:domain resource='#Element'/>
<rdfs:range resource='#Element'/>
<rdfs:range resource='#Comment'/>
<rdfs:range resource='#ProcessingInstruction'/>
<rdfs:range resource='#UnexpandedEntityReference'/>
<rdfs:range resource='#Character'/>
<rdfs:subClassOf resource= rdfs:ContainerMembershipProperty/>
</rdfs:Property>

                    
truely

Ding Li
------------------------------------
AI Lab., Dept. of Computer Science and Technology,
Peking University, P.R.China, 100871
Work Phone: 86-10-62763373

Received on Thursday, 5 April 2001 12:59:50 UTC