Possible Duplicates:
How to convert xsd to human readable documentation?
Formatting XSD scheme for peer review
I have a XSD file that includes xsd:annotation elements which contains a xsd:documentation element
<xsd:element name="CompanyId" minOccurs="0">
<xsd:annotation>
<xsd:documentation>The name of the company.
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="0"/>
<xsd:maxLength value="40"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
How can I get the schema into a file (doc, spreadsheet, etc.) that would allow non-tech people to look at the contents of schema to better understand what data is available?
I want then to see that the field CompanyID contains "The name of the company." as shown in the xsd:documentation. It would even be nice to see the length is up to 40 characters.