<?xml version="1.0"?>

<!DOCTYPE classes[
 <!ELEMENT classes (class)*>
 <!ELEMENT class (students)>
 <!ELEMENT students (student)*>
 <!ELEMENT student (#PCDATA)>
 <!ATTLIST class classid CDATA #REQUIRED>
 <!ATTLIST class description CDATA #REQUIRED>
 <!ATTLIST class section CDATA #REQUIRED>
 <!ATTLIST class location CDATA #REQUIRED>
 <!ATTLIST student studentid CDATA #REQUIRED>
 <!ATTLIST student name CDATA #REQUIRED>
 <!ATTLIST student degree CDATA #REQUIRED>
 <!ATTLIST student grade CDATA #REQUIRED>
]>

<classes>
  <class classid="CS610" description="Topics in Database Systems" section="4C" location="CH430">
    <students>
      <student studentid="444-33-5555" name="Han Dba" degree="MS" grade="A"/>	
      <student studentid="333-55-4444" name="Darth Index" degree="MS" grade="B"/>	
      <student studentid="555-33-4444" name="Leia Constraint" degree="DR" grade="C"/>	
    </students>	
  </class>	
  <class classid="CS538" description="Distributed Object Oriented Systems" section="1C" location="CH350">
    <students>
      <student studentid="444-33-5555" name="Han Dba" degree="MS" grade="A"/>	
      <student studentid="333-55-1111" name="Luke Remote" degree="MS" grade="A"/>	
      <student studentid="555-33-4444" name="Leia Constraint" degree="DR" grade="A"/>	
    </students>	
  </class>	
  <class classid="CS800" description="Topics in hyperspace navigation topology" section="2A" location="NA100">
    <students>
      <student studentid="333-55-1111" name="Luke Remote" degree="MS" grade="A"/>	
      <student studentid="555-33-4444" name="Leia Constraint" degree="DR" grade="A"/>	
      <student studentid="999-99-9999" name="Spicy Navigator" degree="DR" grade="A"/>	
    </students>	
  </class>	
</classes>
