Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
- <xs:element name="Knihy">
- <xs:complexType>
- <xs:sequence>
- <xs:element ref="Kniha" minOccurs="0" maxOccurs="unbounded"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- <xs:element name="Kniha">
- <xs:complexType>
- <xs:sequence>
- <xs:element name="Titul" type="xs:string"/>
- <xs:element name="Autor" type="xs:string"/>
- <xs:element name="ISBN" type="xs:string"/>
- <xs:element name="Edice" type="xs:string"/>
- <xs:element name="Cena" type="xs:string"/>
- </xs:sequence>
- </xs:complexType>
- </xs:element>
- </xs:schema>
Add Comment
Please, Sign In to add comment