Created
May 13, 2023 20:33
-
-
Save dalelane/81bdb1c68e7dc5ecf35c6e56e584d337 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" | |
targetNamespace="urn:books" | |
xmlns:bks="urn:books"> | |
<xsd:element name="books" type="bks:BooksForm"/> | |
<xsd:complexType name="BooksForm"> | |
<xsd:sequence> | |
<xsd:element name="book" | |
type="bks:BookForm" | |
minOccurs="0" | |
maxOccurs="unbounded"/> | |
</xsd:sequence> | |
</xsd:complexType> | |
<xsd:complexType name="BookForm"> | |
<xsd:sequence> | |
<xsd:element name="author" type="xsd:string"/> | |
<xsd:element name="title" type="xsd:string"/> | |
<xsd:element name="genre" type="xsd:string"/> | |
<xsd:element name="price" type="xsd:float" /> | |
<xsd:element name="pub_date" type="xsd:date" /> | |
<xsd:element name="review" type="xsd:string"/> | |
</xsd:sequence> | |
<xsd:attribute name="id" type="xsd:string"/> | |
</xsd:complexType> | |
</xsd:schema> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment