[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]
Subject: Clause model - RDF
Attached is the initial Data Consortium proposal for implementation of the
Clause Model Requirements, as applied to the attachment to the Requirements
Statement. This markup conforms to the W3C's Resource Description Framework.
Supporting material to this markup and its DTD (as outlined by Jason Harrop)
will be provided at a later time.
John McClure, Architect
http://www.dataconsortium.org
NOTE
RDF allows several ways to represent information. For instance, there is no
difference between:
<Block rdf:ID='Example'>
<contains>
<rdf:Seq>
<rdf:li rdf:resource='#Caption1'/>
<rdf:li rdf:resource='#Block1'/>
<rdf:li rdf:resource='#Caption2'/>
<rdf:li rdf:resource='#Block2'/>
</rdf:Seq>
</contains>
</Block>
and
<Block rdf:ID='Example'>
<contains>
<rdf:Seq>
<rdf:li><Caption ... /></rdf:li>
<rdf:li><Block ... /></rdf:li>
<rdf:li><Caption ... /></rdf:li>
<rdf:li><Block ... /></rdf:li>
</rdf:Seq>
</contains>
</Block>
Similarly, there is no difference between
<Caption au='Caption Text'>
and
<Caption>
<au>Caption Text</au>
</Caption>
[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]