<?xml version="1.0" ?>

<Schema name="listSchema"
   xmlns="urn:schemas-microsoft-com:xml-data"
   xmlns:dt="urn:schemas-microsoft-com:datatypes">

<AttributeType name="Ptype" dt:type="enumeration"
  dt:values="drama comedy" default="drama" />

<ElementType name="play" content="eltOnly" model="closed">
  <description>Contains the title and author 
      of each play</description>
  <attribute type="Ptype" />
  <group order="seq">
    <element type="title" />
    <element type="author" />
  </group>
</ElementType>

<ElementType name="events" content="eltOnly" model="closed">
  <description>Contains the set of plays </description>
    <element type="play" minOccurs="1" maxOccurs="*" />
</ElementType>

<ElementType name="title" content="textOnly" model="closed"
   dt:type="string">
  <description>Contains the title of the play</description>
</ElementType>

<ElementType name="author" content="eltOnly" model="closed">
  <description>Contains the 1st and last 
      name of author</description>
  <group order="seq">
    <element type="First_Name" />
    <element type="Last_Name" />
  </group>
</ElementType>

<ElementType name="First_Name" content="textOnly" model="closed"
  dt:type="string">
</ElementType>

<ElementType name="Last_Name" content="textOnly" model="closed"
  dt:type="string">
</ElementType>

</Schema>

