feat(ch 4): added

This commit is contained in:
Rafa Muñoz
2024-09-27 14:28:05 +02:00
parent d622608575
commit 3f7e83baae
97 changed files with 1250 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="superheroe" type="caracSuperheroe"/>
<xs:complexType name="caracSuperheroe">
<xs:choice>
<xs:element name="nombre" minOccurs="0" maxOccurs="unbounded" type="xs:string" />
<xs:element name="edad" type="xs:string" />
<xs:element name="bando" type="xs:string" />
</xs:choice>
</xs:complexType>
</xs:schema>