So how can I make an XML elements schema
So I want to have a custom type that can have the values
Fast, Medium, Slow and Wobbly, how can I do this with XSD?FastMediumSlowWobbly<xs:attribute name="style" default="info">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="info"/>
<xs:enumeration value="warning"/>
<xs:enumeration value="danger"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>