RecipeList

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
           elementFormDefault="qualified"
           targetNamespace="http://nwalsh.com/xmlns/extreme2004/recipes/"
           xmlns:r="http://nwalsh.com/xmlns/extreme2004/recipes/">

  <xs:complexType name="RecipeList">
    <xs:sequence>
      <xs:element ref="r:recipe" minOccurs="1" maxOccurs="unbounded"/>
    </xs:sequence>
  </xs:complexType>

  <xs:element name="recipeList" type="r:RecipeList"/>