<xsd:schema id="Menu"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
  <xsd:element name="MenuItem">
    <xsd:complexType>
      <xsd:all>
        <xsd:element name="Food" minOccurs="0" type="xsd:string"/>
        <xsd:element name="Price" minOccurs="0" type="xsd:decimal"/>
      </xsd:all>
    </xsd:complexType>
  </xsd:element>
  <xsd:element name="Menu" msdata:IsDataSet="true">
    <xsd:complexType>
      <xsd:choice maxOccurs="unbounded">
        <xsd:element ref="MenuItem"/>
      </xsd:choice>
    </xsd:complexType>
  </xsd:element>
</xsd:schema>
