first of all, congratulations to the sun team on the 1.0 release!
I've just started going over the new user guide....but this is my first
problem i'm really not too sure about.
here's what the compiler spits out at me
[ERROR] A property with the same name "Value" is generated from more
than one schema component.
line 176 of biblio.xsd
[ERROR] (Relevant to above error) another one is generated from this
schema component.
line 253 of datatypes.xsd
here's my complex type.
<xs:complexType name="PubStatus-a-type">
<xs:simpleContent>
<xs:extension base="xs:integer">
<xs:attribute name="value" use="required">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="received" />
<xs:enumeration value="accepted" />
<xs:enumeration value="epublish" />
<xs:enumeration value="ppublish" />
<xs:enumeration value="revised" />
<xs:enumeration value="pmc" />
<xs:enumeration value="pmcr" />
<xs:enumeration value="pubmed" />
<xs:enumeration value="pubmedr" />
<xs:enumeration value="aheadofprint" />
<xs:enumeration value="premedline" />
<xs:enumeration value="medline" />
<xs:enumeration value="other" />
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
and datatypes.xsd isn't one of mine :P
MD