I'm tasked with validating and interpreting and XSD Schema, this schema starts with:
<xsd:schema xmlns:xsd="http://....">
<xsd:complexType name="TemplateType"> <!-- Nowhere referenced -->
<xsd:sequence>
<xsd:element name="DataType" type="DocumentDataType"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="DocumentDataType">
It's been too long since my last XSD task, but somewhere I would expect a <element type="templateType">
, but this is not the case.
What is wrong here? My rusty XSD knowledge or the delivered XSD?