This is the simplest declaration:
<xs:element name="stop"/>
This is NOT an empty element like:
<stop/>
The type is xs:anyType which is mixed and allows any children.
This is an empty element:
<xs:element name="stop"> <xs:complexType> <xs:sequence/> </xs:complexType> </xs:element>