attribute
element
name
attribute specifies the name of the attribute
optional
element can make an attribute optional
<?xml version="1.0"?>
<element name="SONG" xmlns="http://relaxng.org/ns/structure/1.0">
<element name="TITLE">
<text/>
</element>
<element name="PHOTO">
<attribute name="ALT">
<text/>
</attribute>
<attribute name="WIDTH">
<text/>
</attribute>
<attribute name="HEIGHT">
<text/>
</attribute>
</element>
<oneOrMore>
<element name="COMPOSER">
<text/>
</element>
</oneOrMore>
<zeroOrMore>
<element name="PRODUCER">
<text/>
</element>
</zeroOrMore>
<optional>
<element name="PUBLISHER">
<text/>
</element>
</optional>
<optional>
<element name="LENGTH">
<text/>
</element>
</optional>
<optional>
<element name="YEAR">
<text/>
</element>
</optional>
<oneOrMore>
<element name="ARTIST">
<text/>
</element>
</oneOrMore>
</element>
element SONG {
element TITLE { text },
element PHOTO {
attribute ALT { text },
attribute WIDTH { text },
attribute HEIGHT { text }
},
element COMPOSER { text }+,
element PRODUCER { text }*,
element PUBLISHER { text }?,
element LENGTH { text }?,
element YEAR { text }?,
element ARTIST { text }+
}