mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00

* Makefile.am xmlschemas.c: more Schemas work * test/schemas/* result/schemas/*: added more tests coming from the spec. Daniel
21 lines
662 B
XML
21 lines
662 B
XML
<?xml version="1.0"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:complexType name="personName">
|
|
<xs:sequence>
|
|
<xs:element name="title" minOccurs="0"/>
|
|
<xs:element name="forename" minOccurs="0" maxOccurs="unbounded"/>
|
|
<xs:element name="surname"/>
|
|
</xs:sequence>
|
|
</xs:complexType>
|
|
<xs:complexType name="extendedName">
|
|
<xs:complexContent>
|
|
<xs:extension base="personName">
|
|
<xs:sequence>
|
|
<xs:element name="generation" minOccurs="0"/>
|
|
</xs:sequence>
|
|
</xs:extension>
|
|
</xs:complexContent>
|
|
</xs:complexType>
|
|
<xs:element name="addressee" type="extendedName"/>
|
|
</xs:schema>
|