2 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
3 targetNamespace="http://www.w3schools.com"
4 xmlns="http://www.w3schools.com"
5 elementFormDefault="qualified">
7 <xs:element name="pelicula">
10 <xs:element name="titulo" type="xs:string"/>
11 <xs:element name="director" type="xs:string"/>
12 <xs:element name="fecha" type="xs:date"/>
13 <xs:element name="actores">
16 <xs:element name="actor" minOccurs="1" maxOccurs="unbounded">
18 <xs:attribute name="nombre" type="xs:string"/>
19 <xs:attribute name="personaje" type="xs:string"/>