blob: 4929964e48900f066c0307f0bb98936fc1d7f95b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0"?>
<!--
file : examples/cxx/parser/mixed/text.xsd
author : Boris Kolpackov <boris@codesynthesis.com>
copyright : not copyrighted - public domain
-->
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:complexType name="anchor">
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="href" type="xsd:string" use="required"/>
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
<xsd:complexType name="text" mixed="true">
<xsd:sequence>
<xsd:element name="a" type="anchor" minOccurs="0" maxOccurs="unbounded"/>
</xsd:sequence>
</xsd:complexType>
<xsd:element name="text" type="text"/>
</xsd:schema>
|