I have been dwindling around a while but could not find any tutorials or resources about an XML Schema provided by Microsoft in this link. It looks like:
<Schema xmlns="urn:schemas-microsoft-com:xml-data"
xmlns:dt="urn:schemas-microsoft-com:datatypes">
<AttributeType name='studentID' dt:type='string' required='yes'/>
<ElementType name='name' content='textOnly'/>
<ElementType name='GPA' content='textOnly' dt:type='float'/>
<ElementType name='student' content='mixed'>
<attribute type='studentID'/>
<element type='name'/>
<element type='GPA'/>
</ElementType>
<ElementType name='class' content='eltOnly'>
<element type='student'/>
</ElementType>
</Schema>
I know this is not a W3C recommended XSD format... I am facing difficulty to know how to read and make a standard format XSD out of it. I also wish to generate C# classes from it.
Any help would be appreciated. It has really confused my understanding of XML schemas.