Skip to content

Instantly share code, notes, and snippets.

@labra
Created December 3, 2014 19:42
Show Gist options
  • Save labra/99aa09f41183ca034292 to your computer and use it in GitHub Desktop.
Save labra/99aa09f41183ca034292 to your computer and use it in GitHub Desktop.
Ejemplo con XML Schema - pedido.xsd
<?xml version="1.0" encoding="ISO-8859-1"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="pedido">
<xs:complexType>
<xs:sequence>
<xs:element name="producto" type="tipoProducto" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:complexType name="tipoProducto">
<xs:sequence>
<xs:element name="nombre" type="xs:string" />
<xs:element name="cantidad" type="xs:integer" />
</xs:sequence>
<xs:attribute name="codigo" type="xs:string" />
</xs:complexType>
</xs:schema>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment