Extra

Download as ppt, pdf, or txt
Download as ppt, pdf, or txt
You are on page 1of 1

XML schema for the coffee example

<?xml version="1.0" ?>


<xsd:schema
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="priceList"
type="coffeetype"/>
<xsd:complexType name="coffeetype">
<xsd:sequence>
<xsd:element name = "coffee" minOccurs="1"
maxOccurs="unbound">
<xsd:complexType>
<xsd:sequence>
<xsd:element name = "name"/>
<xsd:element name = "price"/>
</xsd:sequence>

You might also like