<?xml version="1.0" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="pet">
    <xs:simpleType>
      <xs:restriction base="xs:string">
        <xs:enumeration value="dog" />
        <xs:enumeration value="cat" />
      </xs:restriction>
    </xs:simpleType>
  </xs:element>
</xs:schema>
