<?xml version="1.0" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="pet" type="myType" />

  <xs:simpleType name="myType">
    <xs:restriction base="xs:string">
      <xs:enumeration value="dog" />
      <xs:enumeration value="cat" />
    </xs:restriction>
  </xs:simpleType>
</xs:schema>
