User Tools

Site Tools


en:jobdata:version010603:complextypes:address:patient

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
en:jobdata:version010603:complextypes:address:patient [2017/03/08 16:14] larabernauen:jobdata:version010603:complextypes:address:patient [2017/06/19 18:23] (current) sebastianraring
Line 1: Line 1:
 +====== address (Address) ======
 +
 +[[en:jobdata:version010603:structure|b2bOpticJobData]] -> [[en:jobdata:version010603:structure|items]] -> [[en:jobdata:version010603:complextypes:item|item]] -> [[en:jobdata:version010603:complextypes:pair|pair]] -> [[en:jobdata:version010603:complextypes:patient|patient]] -> address
 +
 +{{:en:jobdata:version010603: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>