<?xml version="1.0" encoding="utf-16"?>
<xsd:complexType name="cardContactType">
<xsd:sequence>
<xsd:element name="firstName" type="xsd:string" />
<xsd:element name="lastName" type="xsd:string" />
<xsd:element name="company" type="xsd:string" />
<xsd:element name="address" type="xsd:string" />
<xsd:element name="city" type="xsd:string" />
<xsd:element name="state" type="xsd:string" />
<xsd:element name="zipCode" type="xsd:string" />
<xsd:element name="country" type="xsd:string" />
<xsd:element name="email" type="xsd:string" />
<xsd:element name="phone" type="xsd:string" />
</xsd:sequence>
</xsd:complexType>
|