2
0
mirror of https://github.com/pyqt/examples.git synced 2025-08-27 12:07:15 +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

26 lines
955 B
XML

<?xml version="1.0"?>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="contact">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="givenName" type="xsd:string"/>
<xsd:element name="familyName" type="xsd:string"/>
<xsd:element name="birthdate" type="xsd:date" minOccurs="0"/>
<xsd:element name="homeAddress" type="address"/>
<xsd:element name="workAddress" type="address" minOccurs="0"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="address">
<xsd:sequence>
<xsd:element name="street" type="xsd:string"/>
<xsd:element name="zipCode" type="xsd:string"/>
<xsd:element name="city" type="xsd:string"/>
<xsd:element name="country" type="xsd:string"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>