スキーマ定義 (.xsd ファイル) 内のこの列挙が冗長であることを確認 (または反論) してください (2 番目の simpleType が 5 文字以下のものを通過させるため)。
<simpleType name="decision">
<annotation>
<documentation>It will decide the flow</documentation>
</annotation>
<union>
<simpleType>
<restriction base="string">
<enumeration value="yes"/>
<enumeration value="no"/>
<enumeration value="maybe"/>
</restriction>
</simpleType>
<simpleType>
<restriction base="string">
<maxLength value="5"/>
</retriction>
</simpleType>
</union>
<simpleType>
アプリケーション全体にこれらのものがかなりあるので、最適化する必要があります。