この XSD 要素が定義されています。
<xsd:element name="CU_FIRST_NAME">
<xsd:annotation>
<xsd:documentation>
The first name of the customer that is getting billed for the order
</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:maxLength value="50"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
これを 1 つの要素で置き換えることができることはわかっていますが、オプションにする必要があるより複雑な要素 (シーケンス) があります。
<xsd:schema>
最初の子 (つまり、階層のすぐ下) 要素をオプションにする方法はありますか?
CU_FIRST_NAME
明確にするために、ノード全体とそのすべての子をオプションにしたいと思います。