<xs:element name="Order" minOccurs="1" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType>
<xs:sequence>
<xs:element name="ShippingMethod" type="xs:string" minOccurs="0" />
<xs:element name="Items" minOccurs="1">
<xs:complexType>
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="OrderItemDetails" type="BNPLOrderItemDetailType" />
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ShippingAddress" type="ShippingAddressType" minOccurs="1" />
<xs:element name="ShippingContactPhone" type="ContactPhoneType" minOccurs="1" />
</xs:sequence>
</xs:complexType>
</xs:element>
|