mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-01-19 10:03:34 +03:00
a84c0b30c4
* relaxng.c xmlschemas.c include/libxml/schemasInternals.h: commiting some work done while in the Maldives (hence the timezone on the laptop !) * result/schemas/length3* test/schemas/deter0_* test/schemas/group0_*: some tests added too Daniel
19 lines
572 B
XML
19 lines
572 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
<xs:group name="name">
|
|
<xs:choice>
|
|
<xs:element name="name" type="xs:string"/>
|
|
<xs:sequence>
|
|
<xs:element name="first-name" type="xs:string"/>
|
|
<xs:element name="middle-name" type="xs:string" minOccurs="0"/>
|
|
<xs:element name="last-name" type="xs:string"/>
|
|
</xs:sequence>
|
|
</xs:choice>
|
|
</xs:group>
|
|
<xs:element name="author">
|
|
<xs:complexType>
|
|
<xs:group ref="name"/>
|
|
</xs:complexType>
|
|
</xs:element>
|
|
</xs:schema>
|