Using the Seq Container


Statement:   The students of the course csci-2962 in alphabetical order are Elizabeth, George and John.

Statement using Seq Container
   <?xml version="1.0"?>
   <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
	    xmlns:s="http://www.schemas.org/Course/">
     <rdf:Description about="http://www.cs.rpi.edu/courses/csci-2962">
       <s:students>
           <rdf:Seq>
	      <rdf:li rdf:resource="http://www.cs.rpi.edu/students/er"/>
	      <rdf:li rdf:resource="http://www.cs.rpi.edu/students/gl"/>
	      <rdf:li rdf:resource="http://www.cs.rpi.edu/students/js"/>
           </rdf:Seq>
       </s:students>
     </rdf:Description>
   </rdf:RDF>