Hi,
I recently bought Word 2007 to try its XML support. When I try to import my schema I receive an error:
"Schema derived type and the base type must have the same content type"
Its pointing to a complexType element that is mixed:
Code:
<xs:complexType name="texttype" mixed="true">
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element ref="bold" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="italic" minOccurs="0" maxOccurs="unbounded"/>
<xs:element ref="UnderScore" minOccurs="0" maxOccurs="unbounded"/>
My Schema are valid, does anyone know why I am receiving the error?