1
私はsimpleType要素内にオプションの要素を配置しようとしていますので、complexTypeに変更しました。今私はcomplexType内部にcomplexTypeを持っていて、バリデーターはそれが間違っていると言います、どうすれば修正できますか?ComplexType内のComplexType
<glowne_role>
<aktor>William H. Macy</aktor>
<aktor>
Frances McDormand
<komentarz>Prywatnie aktorka jest żoną reżysera.</komentarz>
</aktor>
</glowne_role>
<xs:element name="komentarz" type="xs:string" />
<xs:complexType name="glowne_role">
<xs:complexType name="aktor" minOccurs="1" maxOccurs="3" type="xs:string">
<xs:element ref="komentarz" minOccurs="0"/>
</xs:complexType>
</xs:complexType>
感謝を! –