As I work on this project I keep getting an error saying:
Element 'Customer' must have no character or element information item [children], because the type's content type is empty.
I am not sure why this is not working seeing I followed the notes and it looks like this:
<xs:element name="Customer" type="xs:string">
<xs:complexType>
<xs:attribute name="id" type="xs:integer" use="required"/>
</xs:complexType>
</xs:element>
I know it's saying I can't have the type="xs:string"
in there but then how do I make it have to have a string?