<?xml version="1.0" encoding="utf-16"?>
<xs:complexType name="OrgContact">
<xs:annotation>
<xs:documentation>An OrgContact is a person that has completed the required information for an entered organizatoin and/or a person that has completed one or more entries for this organization.</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="contactId" type="xs:int" />
<xs:element name="uuid" type="xs:string" minOccurs="0" />
<xs:element name="contactName" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactAddress1" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="60" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactAddress2" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="60" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactCity" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="40" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactRegion" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactPostalCode" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="15" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactCountry" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="contactDayPhone" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="30" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactEveningPhone" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="2" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="contactVenueName" type="xs:string" minOccurs="0" maxOccurs="1" />
<xs:element name="contactVenuePhone" minOccurs="0">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="128" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="paymentSummary" type="PaymentDetails" minOccurs="0" maxOccurs="1" />
</xs:sequence>
</xs:complexType>
|