Originally posted by: Diamond.Li
Here is my schema definition:
<?xml version="1.0" encoding="UTF-8"?>
<xsd:schema id="CustomerLocateByIdentificationGet001"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns="http://xsd.bns.com/enterprise/msgs/customer/v1"
xmlns:core="http://xsd.bns.com/types/enterprise/core/v1"
xmlns:types="http://xsd.bns.com/types/enterprise/customer/v1"
targetNamespace="http://xsd.bns.com/enterprise/msgs/customer/v1"
elementFormDefault="qualified">
<xsd:import namespace="http://xsd.bns.com/types/enterprise/core/v1"
schemaLocation="core/v1/CommonSimpleTypes.xsd"/>
<xsd:import namespace="http://xsd.bns.com/types/enterprise/customer/v1"
schemaLocation="CustomerSearch.xsd" />
<xsd:element name="CustomerLocateByIdentificationGetRq">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="header" type="core:RequestHeader"/>
<xsd:element name="payload" type="CustomerLocateByIdentificationRqPayload"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="CustomerLocateByIdentificationGetRs">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="header" type="core:ResponseHeader"/>
<xsd:element name="payload" type="CustomerLocateByIdentificationRsPayload"/>
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:complexType name="CustomerLocateByIdentificationRqPayload">
<xsd:sequence>
<xsd:element name="searchCriteria" type="types:IdentificationCriteria"/>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CustomerLocateByIdentificationRsPayload">
<xsd:sequence>
<xsd:element name="searchResult" type="types:CustomerSearchResult" minOccurs="0" maxOccurs="unbounded"/>
<xsd:element name="paginator" type="core:Pagination"/>
</xsd:sequence>
</xsd:complexType>
</xsd:schema>
#IBM-Websphere-Transformation-Extender#IBMSterlingTransformationExtender#DataExchange