Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="UTF-8"?>
- <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns="urn:libreria-schema"
- elementFormDefault="qualified"
- targetNamespace="urn:libreria-schema">
- <xsd:element name="libreria" type="tipoLibreria" />
- <xsd:complexType name="tipoLibreria">
- <xsd:sequence maxOccurs="unbounded">
- <xsd:element name="libro" type="tipoLibro" />
- </xsd:sequence>
- </xsd:complexType>
- <xsd:complexType name="tipoLibro">
- <xsd:sequence>
- <xsd:element name="titulo" type="xsd:string" />
- <xsd:element name="autor" type="nombreAutor" />
- <xsd:element name="precio" type="xsd:decimal" />
- </xsd:sequence>
- <xsd:attribute name="genero" type="xsd:string" />
- </xsd:complexType>
- <xsd:complexType name="nombreAutor">
- <xsd:sequence>
- <xsd:element name="nombre" type="xsd:string" />
- <xsd:element name="apellido" type="xsd:string" />
- </xsd:sequence>
- </xsd:complexType>
- </xsd:schema>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement