2017-03-06 5 views

答えて

2

xsd:enumeration要素doesn’t allow any attributes other than value and idです。

何をしようとしているのかは明らかではありませんが、複数のxsd:enumeration要素を指定することができます。それは要素が何であるか正確にはありませんか?これを行うことができます:

<xsd:restriction base="xsd:string"> 
    <xsd:enumeration value="World"/> 
    <xsd:enumeration value="something"/> 
</xsd:restriction> 
関連する問題