| Issue 3: | postal code element | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
New
Sep 27, 2010
yes, change it to NonEmptyStringType
Status:
Accepted
|