forked from xmlunit/test-resources
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBook.xsd2
20 lines (17 loc) · 839 Bytes
/
Book.xsd2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<foo:schema xmlns:foo="http://www.w3.org/2001/XMLSchema"
targetNamespace="https://www.xmlunit.org/publishing"
xmlns="https://www.xmlunit.org/publishing"
version="1.0"
elementFormDefault="qualified">
<foo:element name="Book" type="BookType"/>
<foo:complexType name="BookType">
<foo:sequence>
<foo:element name="Title" type="foo:string" minOccurs="1" maxOccurs="1"/>
<foo:element name="Author" type="foo:string" minOccurs="1" maxOccurs="unbounded"/>
<foo:element name="Date" type="foo:string" minOccurs="1" maxOccurs="1"/>
<foo:element name="ISBN" type="foo:string" minOccurs="1" maxOccurs="1"/>
<foo:element name="Publisher" type="foo:string" minOccurs="1" maxOccurs="1"/>
</foo:sequence>
</foo:complexType>
</foo:schema>