Hello,
I am trying to create a XML schema to validate a XML document. The XML document has recursive <Section> elements (as shown below). Can someone help me create the XSD for the recursive part (Section One and the children)
<?xml version="1.0" encoding="UTF-8"?>
<MenuHelp sectionHeading="" menuSpace="">
<Description>></Description>
<Sections>
<Section name="Application Help" url="" helpFileName="" isLegacy="1" code="">
<Section name="Section One Help" url="" helpFileName="" isLegacy="1" code="">
<Section name="Section One SubHelp" url="" helpFileName="" isLegacy="1" code="">
<Section name="Section One SubSubHelp" url="" helpFileName="" isLegacy="1" code="">
<Section name="SubSubSubHelp " url="" helpFileName="" isLegacy="1" code=""/>
</Section>
</Section>
<Section name="Header " url="" helpFileName="" isLegacy="1" code=""/>
</Section>
<Section name="Saved Search Help" url="" helpFileName="" isLegacy="1" code=""/>
<Section name="Changes Help" url="" helpFileName="" isLegacy="1" code=""/>
</Section>
<Section name="Login Help" url="" helpFileName="" isLegacy="1" code="">
<Section name="Login Sub Help" url="" helpFileName="" isLegacy="1" code=""/>
</Section>
</Sections>
</MenuHelp>