Issue 3: postal code element
Status:  Fixed
Owner:
Closed:  Sep 2010
Cc:
Project Member Reported by htobon, Sep 24, 2010
Same as  issue 2 , the data type of the postal code element is actually an integer. But some postal codes are compounds not only by numbers.

Example:
U.S. postal code: 93106-2231

The NonEmptyStringType should be used instead of xs:integer

<xs:element name="postalCode" type="xs:string" minOccurs="0">
</xs:element>

should be replaced by:

<xs:element name="postalCode" type="res:NonEmptyStringType" minOccurs="0">
</xs:element>
Sep 24, 2010
Project Member #1 htobon
(No comment was entered for this change.)
Status: New
Sep 27, 2010
Project Member #2 wixner@gmail.com
yes, change it to NonEmptyStringType
Status: Accepted
Sep 28, 2010
Project Member #3 htobon
fixed in r142
Status: Fixed