2
0
mirror of https://github.com/pyqt/examples.git synced 2025-08-26 19:47:19 +00:00
Michael Herrmann 54f8b69baa Restore broken links by reverting to revision a52c47bf
The commits since then moved many files into the src/ subdirectory.
This would have broken existing links on the internet. To solve this,
we leave the master branch as-is and make such breaking changes on a
different branch.
2019-06-28 16:21:19 +02:00

24 lines
871 B
XML

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="order">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="customerId" type="xsd:positiveInteger"/>
<xsd:element name="article" type="articleType" maxOccurs="unbounded"/>
<xsd:element name="deliveryDate" type="xsd:date"/>
<xsd:element name="payed" type="xsd:boolean"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="articleType">
<xsd:sequence>
<xsd:element name="articleId" type="xsd:positiveInteger"/>
<xsd:element name="count" type="xsd:positiveInteger"/>
<xsd:element name="comment" type="xsd:string" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>