I have XML that looks like this:
<Parameter Name="parameter name" Value="parameter value" />
which I defined in XSD like this:
<xs:complexType name="Parameter">
<xs:attribute name="Name" type="xs:string" use="required" />
<xs:attribute name="Value" type="xs:string" use="required" />
</xs:complexType>
but what I really want is the XML to look like this:
<Parameter Name="parameter name">parameter value<Parameter/>
I can't figure out how I do this in XSD. How would the XSD look like?