19 lines
651 B
XML
19 lines
651 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:group name="custGroup">
|
|
<xs:sequence>
|
|
<xs:element name="customer" type="xs:string"/>
|
|
<xs:element name="orderdetails" type="xs:string"/>
|
|
<xs:element name="billto" type="xs:string"/>
|
|
<xs:element name="shipto" type="xs:string"/>
|
|
</xs:sequence>
|
|
</xs:group>
|
|
|
|
<xs:element name="order" type="ordertype"/>
|
|
|
|
<xs:complexType name="ordertype">
|
|
<xs:group ref="custGroup"/>
|
|
<xs:attribute name="status" type="xs:string"/>
|
|
</xs:complexType>
|
|
|
|
</xs:schema> |