mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-03-10 08:58:16 +03:00
* xmlschemas.c xmlschemastypes.c include/libxml/xmlerror.h include/libxml/schemasInternals.h: lot of bug fixes, cleanup, starting to add proper namespace support too. * test/schemas/* result/schemas/*: added a number of tests fixed the result from some regression tests too. Daniel
17 lines
559 B
XML
17 lines
559 B
XML
<?xml version="1.0"?>
|
|
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
<xsd:complexType name="PurchaseOrderType">
|
|
<xsd:sequence>
|
|
<xsd:all>
|
|
<xsd:element name="shipTo" type="USAddress"/>
|
|
<xsd:element name="billTo" type="USAddress"/>
|
|
<xsd:element name="items" type="Items"/>
|
|
</xsd:all>
|
|
<xsd:sequence>
|
|
<xsd:element ref="comment" minOccurs="0" maxOccurs="unbounded"/>
|
|
</xsd:sequence>
|
|
</xsd:sequence>
|
|
<xsd:attribute name="orderDate" type="xsd:date"/>
|
|
</xsd:complexType>
|
|
</xsd:schema>
|