<xs:complexType name="VoterIdentificationStructure">
<xs:sequence>
<xs:element ref="VoterName" minOccurs="0" />
<xs:element name="ElectoralAddress" type="ElectoralAddressStructure" minOccurs="0">
<xs:annotation>
<xs:documentation>This is the address that gives the voter the right to vote</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="PreviousElectoralAddress" type="ElectoralAddressStructure" minOccurs="0" />
<xs:choice minOccurs="0">
<xs:element ref="VToken" />
<xs:element ref="VTokenQualified" />
</xs:choice>
<xs:element name="VoterId" type="xs:string" minOccurs="0" maxOccurs="unbounded" />
<!-- attribute - use xsi localization definition - e.g. xsi:type="driverslicense" content mechanism to control content mask for permitted VoterId values -->
<xs:element name="VoterSignature" type="BinaryItemStructure" minOccurs="0" />
<xs:any namespace="##other" minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="DisplayOrder" type="xs:positiveInteger" use="optional" />
<xs:attribute name="Id" type="xs:anySimpleType" use="optional" />
</xs:complexType>
|