Untitled
unknown
plain_text
2 years ago
2.1 kB
3
Indexable
<?xml version="1.0" encoding="UTF-8"?> <xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema"> <xsd:element name="banda"> <xsd:complexType> <xsd:sequence> <xsd:element name="descripcion" type="xsd:string"/> <xsd:element name="miembros"> <xsd:complexType> <xsd:sequence> <xsd:element name="miembro" type="xsd:string"/> <xsd:element name="algocaracteristico" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="albumes"> <xsd:complexType> <xsd:sequence> <xsd:element name="album"> <xsd:complexType> <xsd:sequence> <xsd:element name="nombres"> <xsd:complexType> <xsd:sequence> <xsd:element name="nombre" type="xsd:string"/> <xsd:element name="fecha" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="canciones"> <xsd:complexType> <xsd:sequence> <xsd:element name="cancion" type="xsd:string"/> <xsd:element name="visulizaciones" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> </xsd:complexType> </xsd:element> <xsd:element name="conciertos"> <xsd:complexType> <xsd:sequence> <xsd:element name="concierto" type="xsd:string"/> </xsd:sequence> </xsd:complexType> </xsd:element> </xsd:sequence> <xsd:attribute name="grupo" type="xsd:string"/> </xsd:complexType> </xsd:element> </xsd:schema>
Editor is loading...