User Tools

Site Tools


en:lensorder:version010604:complextypes:address:item

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
en:lensorder:version010604:complextypes:address:item [2017/02/14 16:12] – external edit 127.0.0.1en:lensorder:version010604:complextypes:address:item [2017/06/19 12:38] (current) sebastianraring
Line 1: Line 1:
 +====== address (Address) ======
 +
 +[[en:lensorder:version010604:structure|b2boptic]] -> [[en:lensorder:version010604:structure|items]] -> [[en:lensorder:version010604:complextypes:item|item]] -> [[en:lensorder:version010604:complextypes:account:item|parties]] -> address
 +
 +{{:en:lensorder:version010604:images:address.png?nolink|Address}}
 +
 +^ addressLine ^^
 +^ type | string |
 +^ occurs | 0..3 |
 +^ description | street name with house number or building (part of postal address) |
 +
 +^ poBox ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description | postbox |
 +
 +^ city ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description | city |
 +
 +^ zip ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description | zip code of postal company |
 +
 +^ countryCode ^^
 +^ type | string |
 +^ occurs | 0..1 |
 +^ description | country code in [[http://en.wikipedia.org/wiki/ISO_3166-2|ISO-3166-2]] |
 +
 +<code xml>
 +<xs:complexType name="Address">
 +  <xs:sequence>
 +    <xs:element name="addressLine" type="xs:string" minOccurs="0" maxOccurs="3"/>
 +    <xs:element name="poBox" type="xs:string" minOccurs="0"/>
 +    <xs:element name="city" type="xs:string" minOccurs="0"/>
 +    <xs:element name="zip" type="xs:string" minOccurs="0"/>
 +    <xs:element name="countryCode" type="xs:string" minOccurs="0"/>
 +  </xs:sequence>
 +</xs:complexType>
 +</code>